Effacer les filtres
Effacer les filtres

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

19 vues (au cours des 30 derniers jours)
abcdr
abcdr le 16 Sep 2018
how to plot graphs for x^2+y^2==3*x*y^2, x^3-x^2==y^2-y

Réponses (1)

Aquatris
Aquatris le 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)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by