Question: how to save solution from a solve?

I have this problem

I have to solve something like this

for i to 17 do

solucion[i] := solve({item3[i], item4[i]}, {x, y})

end do

and I obtain in the answer for example

solucion[1] =             {x=2,y=3}

solucion[2] =             {x=3,y=4}

and I would like to create a vector containing all the values for x and all the values for y like x[1]=2  x[2]=3 and so on

How can I do it. and How can I export that to an excel or a text file???

 

Thanks!

Please Wait...