TMtxForLoop.Min Property

Int32 Min { get; set; }

Loop starting index when computing for loop.

Returns: Int32

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