Hi.

I think there is a problem with arrays. When i define an array like this:

A := {1,12}
Then it works fine as you can see:
print(A[1])=1
print(A[2])=12

but if i do it like this:
A := {1.1,12}
Then the results is reversed:
print(A[1])=12
print(A[2])=1.1

I'm running Maple 11 and updated to the 02 patch.


Please Wait...