Matrix.SortAscend Method

Overload List

#SignatureDescription
1TMtx SortAscendSorts the elements in a matrix row(s) in ascending order.
2TMtx SortAscend(Int32 Col)Performs row based sort in ascending order. The Col parameter defines the column based on which the rows are compared with each other.

Overload 1: TMtx SortAscend

Sorts the elements in a matrix row(s) in ascending order.

Result: stored in self (calling object), returns self for chaining

Remarks:

Sorts the elements in calling matrix row(s) in ascending 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
Wach row is sorted independently from the other.

Examples
Matrix A;
A.SetIt(2,2,false,[1,2,
4,2]);
A.SortAscend;
// A becomes:
// [1,2]
// [2,4]
See Also: Matrix.SortDescend

Overload 2: TMtx SortAscend(Int32 Col)

Performs row based sort in ascending order. The Col parameter defines the column based on which the rows are compared with each other.

#NameTypeDescription
1ColInt32

Result: stored in self (calling object), returns self for chaining