Using MathNet.numerics
for C# , I have created dense matrix of doubles.
I wish to find the minimum & maximum element-value of a matrix.
Is there an accessor to get the maximum/minimum value of the dense matrix elements?
Actually I do this
var minValue = MyDenseMatrix.Values.Min();
var minValue = MyDenseMatrix.Values.Max();