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.