if I use the ilmath.min() function with just two 1x1 double (other datatypes not checked) matrices it returns the maximum value instead of the minimum. Everything works fine if the size of the the matrices are bigger than 1x1. Please confirm that the following code returns 1.0 and not 0.0 as aspected. For me this looks like a Bug or is it a feature?
Console.WriteLine(ILMath.min(0.0,1.0));
Console.ReadKey();
Thanks in advance.