how could i plot x^2+(y-x^3/2)^2=1 ?

11 Ansichten (letzte 30 Tage)
Mohamed Ali
Mohamed Ali am 10 Jan. 2023
Beantwortet: Torsten am 10 Jan. 2023
m=(x^2+(y-x^3/2)^2==1)
plot(m)
grid on

Antworten (2)

Star Strider
Star Strider am 10 Jan. 2023
Perhaps this —
syms x y
m(x,y) = (x^2+(y-x^3/2)^2-1);
figure
fimplicit(m, [-1 1 -1 1]*1.5)
grid
axis('equal')
xlabel('X')
ylabel('Y')
.

Torsten
Torsten am 10 Jan. 2023
fun = @(x,y)x.^2+(y-x.^3/2).^2-1;
fimplicit(fun)

Kategorien

Mehr zu Mapping Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by