Question: Define variables that are a solution of fsolve

When I solve a systems of equations, fsolve gives the solution

{ x = 5, y= 6, z = 1}.

I now want want to define the variables x, y and z as respectively 5, 6 and 1 - but without copying the solution. Because this is a solution that I get in a loop, so it changes in every step. Maybe there is a easy way to put it in a vector?

Please Wait...