Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtx *SortDescend() const; | Sorts the elements in a matrix row(s) in descending order. |
| 2 | TMtx *SortDescend(int Col) const; | Performs row based sort in descending order. The Col parameter defines the column based on which the rows are compared with each other. |
Overload 1: TMtx *SortDescend() const;
Sorts the elements in a matrix row(s) in descending order.
Remarks:
Sorts the elements in calling matrix row(s) in descending order in-place. If the calling matrix is complex, then complex values are first compared by the absolute value and then by the argument.
Note
Each row is sorted independently from the other.
See Also: Matrix::SortAscend
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtx *SortDescend(int Col) const;
Performs row based sort in descending order. The Col parameter defines the column based on which the rows are compared with each other.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Col | int |
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler