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

조회 수: 19 (최근 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 CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by