feat: change description by sortrows.
This commit is contained in:
@@ -107,10 +107,10 @@ namespace Aurora
|
|||||||
* 当第一列包含重复的元素时,sortrows 会根据下一列中的值进行排序,并对后续的相等值重复此行为。
|
* 当第一列包含重复的元素时,sortrows 会根据下一列中的值进行排序,并对后续的相等值重复此行为。
|
||||||
* @attention 目前不支持三维,不支持复数
|
* @attention 目前不支持三维,不支持复数
|
||||||
* @param aMatrix 目标矩阵
|
* @param aMatrix 目标矩阵
|
||||||
* @param indexMatrix 排序后各行的原索引矩阵指针,非必须
|
* @param indexMatrix 排序后各行的原索引矩阵指针,必须要有
|
||||||
* @return 排序后矩阵
|
* @return 排序后矩阵
|
||||||
*/
|
*/
|
||||||
Matrix sortrows(const Matrix &aMatrix, Matrix* indexMatrix=nullptr);
|
Matrix sortrows(const Matrix &aMatrix, Matrix* indexMatrix);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 对矩阵求中间值 按列, 目前不支持三维,不支持复数
|
* 对矩阵求中间值 按列, 目前不支持三维,不支持复数
|
||||||
|
|||||||
Reference in New Issue
Block a user