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.
🌐
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.
Find elsewhere
🌐
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 › 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!