Is there a MathNET.Numerics equivalent of Matlab’s sortrows(A, column)
, where A is a Matrix<double>
?
To recall Matlab's documentation:
B = sortrows(A,column) sorts A based on the columns specified in the vector column. For example, sortrows(A,4) sorts the rows of A in ascending order based on the elements in the fourth column. sortrows(A,[4 6]) first sorts the rows of A based on the elements in the fourth column, then based on the elements in the sixth column to break ties.