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.
Similar to my answer to your other question, there's nothing inbuilt but you could use
Linq
'sOrderBy()
method on anEnumerable
of the matrix's rows. Given aMatrix<double> x
,x.EnumerateRows()
returns anEnumerable<Vector<double>>
of the matrix's rows. You can then sort this enumerable by the first element of each row (if that's what you want).In C#,
Example
Writing this as an extension method:
which you can then call like so:
Here's a big fiddle containing everything