Question: how to store in an array and plot ?

hi there ! i wrote this in maple: for i from 0.86 by 0.01 to 2 do print(fsolve({x1+x2 = i, -3*x1+4*x1^3-3*x2+4*x2^3 = 0}, {x1 = 0 .. 1, x2 = 0 .. 1})) end do it computes the values of x1 and x2 and print them . but i want to store these values and the corresponding value of i in two separate arrays i.e. one array having values of x1 and corresponding i ; and the other array having values of x2 and corresponding i. and at last i want to plot the points in both arrays on the same graph so that i have a curve for x1 and x2 both on the same plot having i on its x-axis. please help .. thanks in advance ..
Please Wait...