MtxExpr::SortDescend Function

Overload List

#SignatureDescription
1Vector SortDescend(TVec *Src);Sorts the source data descendingly.
2Vector SortDescend(TVec *Src, TVecInt *IndexVec);Sorts the source data descendingly.
3Matrix SortDescend(TMtx *X);Sorts all rows in the matrix descendingly
4Matrix SortDescend(TMtx *X, int Col);Performs row based sort in descending order.

Overload 1: Vector SortDescend(TVec *Src);

Sorts the source data descendingly.

#NameTypeDescription
1SrcTVec *
Remarks:

Internally calls TVec::SortDescend

Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler

Overload 2: Vector SortDescend(TVec *Src, TVecInt *IndexVec);

Sorts the source data descendingly.

#NameTypeDescription
1SrcTVec *
2IndexVecTVecInt *
Remarks:

Internally calls TVec::SortDescend

Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler

Overload 3: Matrix SortDescend(TMtx *X);

Sorts all rows in the matrix descendingly

#NameTypeDescription
1XTMtx *
Remarks:

Internally calls Matrix::SortDescend

Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler

Overload 4: Matrix SortDescend(TMtx *X, int Col);

Performs row based sort in descending order.

#NameTypeDescription
1XTMtx *
2Colint
Remarks:

Internally calls Matrix::SortDescend

Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler