Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function SortAscend(const Src: TMtxInt): MatrixInt; | Sort in ascending order all Rows. |
| 2 | function SortAscend(const Src: TMtxInt; const Col: Integer): MatrixInt; | Sort in ascending order all Rows from Src according to column Col. |
| 3 | function SortAscend(const Src: TVecInt): VectorInt; | Sorts the source data ascendingly. |
| 4 | function SortAscend(const Src: TVecInt; const IndexVec: TVecInt): VectorInt; | Sorts the source data ascendingly. |
Overload 1: function SortAscend(const Src: TMtxInt): MatrixInt;
Sort in ascending order all Rows.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxInt |
Returns: MatrixInt
Remarks:
Internally calls TMtxInt.SortAscend
Overload 2: function SortAscend(const Src: TMtxInt; const Col: Integer): MatrixInt;
Sort in ascending order all Rows from Src according to column Col.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxInt | |
| 2 | Col | Integer |
Returns: MatrixInt
Remarks:
Internally calls TMtxInt.SortAscend
Overload 3: function SortAscend(const Src: TVecInt): VectorInt;
Sorts the source data ascendingly.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVecInt |
Returns: VectorInt
Remarks:
Internally calls TVecInt.SortAscend