const Min: double;
Minimum value of the attribute found in the learn dataset.
Examples
var a: Matrix;
b: double;
begin
a := [[1,2],[3,4]];
b := a.Min; // b = 1
end;
var
a: Matrix;
result: double;
begin
a := [[1.0, 2.0], [3.0, 4.0]];
result := a.Min;
if Abs(result - 1.0) > 1e-10 then
raise Exception.Create('Matrix.Min: expected 1.0, got ' + result.ToString);
end;