double[] tab = new double[10];
I know I can gen minimum by tab.Min().
double[,] tab = new double[10,2];
This is table of coordinates, in 2nd index 0 is x and 1 is y. There are 10 points.
How can I get minimum (and maximum) value of x and y?
In other words:
minX is the smallest value in 1st column (second index=0 e.g tab[xxx, 0]);
minY is the smallest value in 2nd column (second index=1 e.g tab[xxx, 1]);