Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function SortAscend(const X: TMtx): Matrix; | Sorts the matrix rows ascendigly. |
| 2 | function SortAscend(const X: TMtx; Col: Integer): Matrix; | Sorts the matrix rows ascendigly. |
| 3 | function SortAscend(const Src: TVec): Vector; | Sorts the source data ascendingly. |
| 4 | function SortAscend(const Src: TVec; const IndexVec: TVecInt): Vector; | Sorts the source data ascendingly. |
Overload 1: function SortAscend(const X: TMtx): Matrix;
Sorts the matrix rows ascendigly.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx |
Returns: Matrix
Remarks:
Internally calls Matrix.SortAscend
Overload 2: function SortAscend(const X: TMtx; Col: Integer): Matrix;
Sorts the matrix rows ascendigly.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx | |
| 2 | Col | Integer |
Returns: Matrix
Remarks:
Internally calls Matrix.SortAscend
Overload 3: function SortAscend(const Src: TVec): Vector;
Sorts the source data ascendingly.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec |
Returns: Vector
Remarks:
Internally calls TVec.SortAscend