feat: change description by sortrows.

This commit is contained in:
sunwen
2025-09-16 13:24:48 +08:00
parent e36ca5c82f
commit 0bbb02839a

View File

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