Question: Nested Loops

Question:Nested Loops

Wayne 356 Maple
I am trying to populate a matrix using a nested for..from loop. The Maple statments below only populate the first column; any suggestions? > for i to 45 do for j from 0 by 5 to 45 > do A[i, j+1] := evalf(EllipticF(sin(i*deg2rad), sin(j))); > end do; > end do; Thank you for the assistance.
Please Wait...