Is there a MathNET.Numerics equivalent of Matlab’s unique(A, 'rows')
(or unique(A)
), where A
is a Matrix<double>
?
I have searched extensively through the MathNET.Numerics library documentation, and cannot find anything resembling this functionality. Does similar functionality already exist?
To recall Matlab's documentation:
C = unique(A,'rows') treats each row of A as a single entity and returns the unique rows of A. The rows of the array C are in sorted order.
There's nothing inbuilt, but you could use
Linq
'sDistinct()
method on anEnumerable
of the matrix's rows. Given aMatrix<double> x
,Example
Writing this as an extension method:
Which you can then call as:
This doesn't sort the rows. If you want that, you could combine this with this answer.
Here's a big fiddle containing everything