plot for x^2+y^2==3*x*y^2, x^3-x^2==y^2-y in matlab

15 ビュー (過去 30 日間)
abcdr
abcdr 2018 年 9 月 16 日
回答済み: Aquatris 2018 年 9 月 16 日
how to plot graphs for x^2+y^2==3*x*y^2, x^3-x^2==y^2-y

回答 (1 件)

Aquatris
Aquatris 2018 年 9 月 16 日
syms x y real
eq1 = x^2+y^2==3*x*y^2;
eq2 = x^3-x^2==y^2-y;
figure(1)
ezplot(eq1)
figure(2)
ezplot(eq2)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by