Double Min
Minimum of all non-zero elements.
Returns: Double
Examples
Matrix a = new Matrix();
a.SetIt(2, 2, false, new double[] { 1.0, 2.0, 3.0, 4.0 });
double result = a.Min();
if (Math.Abs(result - 1.0) > 1e-10)
throw new Exception("Matrix.Min: expected 1.0, got " + result);
Matrix a;
double b;
a.SetIt(2,2,false,new double[] {1,2,3,4});
b = a.Min; // b = 1
See Also: TSparseMtx.Max, TSparseMtx.Minc