Question: How to format numbers and save memory?

Hello Maple friends, I have a loop like this: A := array(1..10); for i from 1 to 10 do A[i]:= [ i, i^2, evalf(i^(1/3))]; end do; print(A); Nevertheless I dont know the following things: 1. How may I format in the way that in the third column of my array I see only 3 decimals? 2. As my matrix "A" is very big.. it is this the best way to avoid memory problems or there is some way to reduce this problem? Thanks in advance for any help! Jean
Please Wait...