Question: How can I transfer the results of fsolve to an assignment statement?

Suppose I have

solution:=fsolve(f(x,y)=0,x,y)

this returns 

x=<result>, y=<result>

I want to continue the computation in my worksheet by assigning values to x and y without copying the numerical values by hand.

x:=<result>

y:=<result>

Then I want to make more computations with x and y.

It is too time consuming to copy the numbers by hand each time I run the worksheet

Larry

 

 

And y

Please Wait...