syms x y z;
solve(x==y+1, y^2==z,z==9)
ans =
x: [2x1 sym]
y: [2x1 sym]
z: [2x1 sym]
and now I want to see the results like Mathematica outputting {{x->-2,y->-3,z->9},{x->4,y->3,z->9}}
for Solve[{x == y + 1, y^2 == z, z == 9}, {x, y, z}]
. The workspace window and then variable editor shows me this but I still cannot see the real values stored there.
How can I see the output of Matlab in human-readable form aka beautified form?