Question: array values

I'm relatively new to Maple so the answer to this question may be simple. Why do I not get the expected results of 23.30 and 24.40 when displaying the Matrix? The results are the same if I declare it as an Array. myMatrix := Matrix(1 .. 1, 1 .. 2, datatype = float[8]); myMatrix[1, 1] := 23.30; myMatrix[1, 2] := 23.40; print(myMatrix);                                               [ 23.3000000000000007     23.3999999999999986 ]
Please Wait...