Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector SortDescend(TVec *Src); | Sorts the source data descendingly. |
| 2 | Vector SortDescend(TVec *Src, TVecInt *IndexVec); | Sorts the source data descendingly. |
| 3 | Matrix SortDescend(TMtx *X); | Sorts all rows in the matrix descendingly |
| 4 | Matrix SortDescend(TMtx *X, int Col); | Performs row based sort in descending order. |
Overload 1: Vector SortDescend(TVec *Src);
Sorts the source data descendingly.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec * |
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.
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
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx * |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx * | |
| 2 | Col | int |
Remarks:
Internally calls Matrix::SortDescend
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler