Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function SortDescend(const X: TMtx): Matrix; | Sorts all rows in the matrix descendingly |
| 2 | function SortDescend(const X: TMtx; Col: Integer): Matrix; | Performs row based sort in descending order. |
| 3 | function SortDescend(const Src: TVec): Vector; | Sorts the source data descendingly. |
| 4 | function SortDescend(const Src: TVec; const IndexVec: TVecInt): Vector; | Sorts the source data descendingly. |
Overload 1: function SortDescend(const X: TMtx): Matrix;
Sorts all rows in the matrix descendingly
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx |
Returns: Matrix
Remarks:
Internally calls Matrix.SortDescend
Overload 2: function SortDescend(const X: TMtx; Col: Integer): Matrix;
Performs row based sort in descending order.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx | |
| 2 | Col | Integer |
Returns: Matrix
Remarks:
Internally calls Matrix.SortDescend
Overload 3: function SortDescend(const Src: TVec): Vector;
Sorts the source data descendingly.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec |
Returns: Vector
Remarks:
Internally calls TVec.SortDescend