Question: Save a value

Question:Save a value

tbasket 486 Maple
Dear experts, I use a procedure called Powell. The result of the procedure are the 5 values below. I want to save those results in another variable called MS, but only the second and third value. > Powell(f, Xmin0); [-411.761866103766574, [17.6242885977129257, 82.3757114023303752], 10, 110] -> MS:=(17.62,82.37) The second problem is that I want to put Powell into a double loop. Just for understanding: --> N=1 till 10 M=1 till 10 Powell(f, Xmin0); End M; End N; So that I get 100 values of MS:=(....,....). That I want to save in a matrix. Does anybody know how to proceed here? Thanks a lot!
Please Wait...