plot for x^2+y^2==3*x*y^2, x^3-x^2==y^2-y in matlab
4 次查看(过去 30 天)
显示 更早的评论
how to plot graphs for x^2+y^2==3*x*y^2, x^3-x^2==y^2-y
0 个评论
回答(1 个)
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)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!