Matrix.SortAscend Method

Overload List

#SignatureDescription
1function SortAscend: TMtx;Sorts the elements in a matrix row(s) in ascending order.
2function SortAscend(Col: Integer): TMtx;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: function SortAscend: TMtx;

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
var  A: Matrix;
begin
    A.SetIt(2,2,False,[1,2,
        4,2]);
    A.SortAscend;
    // A becomes:
    // [1,2]
    // [2,4]
end;
See Also: Matrix.SortDescend

Overload 2: function SortAscend(Col: Integer): TMtx;

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

#NameTypeDescription
1ColInteger

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