Try this:
syms x y
figure
fimplicit(x^2 + y^2 -1, [-1 1])
axis('equal')
. Answer from Star Strider on mathworks.com
MathWorks
mathworks.com › matlabcentral › answers › 365848-how-to-plot-x-y2
How to plot x=y2 - MATLAB Answers - MATLAB Central
November 8, 2017 - If you have x=y^2, you could use a tool like ezplot. Or fimplicit. ... Or, you could recognize that y=+/- sqrt(x), and then just use plot.
Videos
MathWorks
mathworks.com › matlabcentral › answers › 160933-plot-y-2-x-2-1-the-expression-to-the-left-of-the-equals-sign-is-not-a-valid-target-for-an-assig
Plot y^2 = x^2 + 1 (The expression to the left of the equals sign is not a valid target for an assignment.) - MATLAB Answers - MATLAB Central
November 1, 2014 - Plot y^2 = x^2 + 1 (The expression to the left... Learn more about plot hyperbolic x y 2d
MathWorks
mathworks.com › matlabcentral › answers › 268204-3d-plot-of-x-2-y-2-z-2-1
3D-plot of "x^2+y^2-z^2=1" - MATLAB Answers - MATLAB Central
February 15, 2016 - 3D-plot of "x^2+y^2-z^2=1". Learn more about isosurface; 3d-printing, solidworks
MathWorks
mathworks.com › matlabcentral › answers › 1891395-how-could-i-plot-x-2-y-x-3-2-2-1
how could i plot x^2+(y-x^3/2)^2=1 ? - MATLAB Answers - MATLAB Central
January 10, 2023 - https://www.mathworks.com/matlabcentral/answers/1891395-how-could-i-plot-x-2-y-x-3-2-2-1#answer_1145520 ... Sign in to comment.
MathWorks
au.mathworks.com › help › matlab › learn_matlab › plots.html
2-D and 3-D Plots
By default, MATLAB® clears the figure each time you call a plotting function, resetting the axes and other elements to prepare the new plot. To add plots to an existing figure, use hold on. Until you use hold off or close the window, all plots appear in the current figure window. x = linspace(0,2*pi); y = sin(x); plot(x,y) hold on y2 = cos(x); plot(x,y2,":") legend("sin","cos") hold off
MathWorks
mathworks.com › matlabcentral › answers › 271911-plot-x1-x2-y1-y2-what-does-this-mean
plot([x1,x2],[y1,y2]) what does this mean ? - MATLAB Answers - MATLAB Central
March 7, 2016 - https://www.mathworks.com/matl... 0 0 0 0 0]; y1 = [100 0 50 86.60 86.60 50]; for i=1:length(x0); hold on; plot([x0(i),x1(i)],[y0(i),y1(i)]) end ·...
MathWorks
mathworks.com › matlabcentral › answers › 488123-x-2-y-2-9
x^2 + y^2 =9 - MATLAB Answers - MATLAB Central
October 29, 2019 - x^2 + y^2 =9. Learn more about circle
MathWorks
mathworks.com › matlabcentral › answers › 325844-how-do-i-input-1-x-y-2-x-2-into-matlab
How do i input (-1/x) - (y^2/x^2) into Matlab? - MATLAB Answers - MATLAB Central
February 19, 2017 - Use the surf or mesh functions to plot it. I leave the rest to you. Sign in to comment. Sign in to answer this question. ... Find the treasures in MATLAB Central and discover how the community can help you!
MathWorks
mathworks.com › matlabcentral › answers › 419275-plot-for-x-2-y-2-3-x-y-2-x-3-x-2-y-2-y-in-matlab
plot for x^2+y^2==3*x*y^2, x^3-x^2==y^2-y in matlab - MATLAB Answers - MATLAB Central
September 16, 2018 - plot for x^2+y^2==3*x*y^2, x^3-x^2==y^2-y in... Learn more about plot