Overload List
| # | Signature | Description |
|---|---|---|
| 1 | VectorInt SortDescend(TVecInt *Src); | Sorts the source data descendingly. |
| 2 | VectorInt SortDescend(TVecInt *Src, TVecInt *IndexVec); | Sorts the source data descendingly. |
| 3 | MatrixInt SortDescend(TMtxInt *Src); | Sort in descending order all Rows from Src. |
| 4 | MatrixInt SortDescend(TMtxInt *Src, const int Col); | Sort in descending order all Rows from Src according to column Col. |
Overload 1: VectorInt SortDescend(TVecInt *Src);
Sorts the source data descendingly.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVecInt * |
Remarks:
Internally calls TVecInt::SortDescend
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler
Overload 2: VectorInt SortDescend(TVecInt *Src, TVecInt *IndexVec);
Sorts the source data descendingly.
Remarks:
Internally calls TVecInt::SortDescend
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler
Overload 3: MatrixInt SortDescend(TMtxInt *Src);
Sort in descending order all Rows from Src.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxInt * |
Remarks:
Internally calls TMtxInt::SortDescend
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler
Overload 4: MatrixInt SortDescend(TMtxInt *Src, const int Col);
Sort in descending order all Rows from Src according to column Col.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxInt * | |
| 2 | Col | const int |
Remarks:
Internally calls TMtxInt::SortDescend
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler