plot for x^2+y^2==3*x*y^2, x^3-x^2==y^2-y in matlab
5 views (last 30 days)
Show older comments
how to plot graphs for x^2+y^2==3*x*y^2, x^3-x^2==y^2-y
0 Comments
Answers (1)
Aquatris
on 16 Sep 2018
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 Comments
See Also
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!