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