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