I don't have a lot of experience with Matlab. I know that you can plot equations with 2 variables like this:
ezplot(f1)
hold on
ezplot(f2)
hold off;
How would you plot three equations with three symbolic variables?
An example system would be:
x^2+y^2+z^2-1=0
2*x^2+y^2-4*z=0
3*x^2-4y+z^2=0
It would be ideal if there was a way to plot any system of 3 equations.