필터 지우기
필터 지우기

how can i plot this equation?

조회 수: 1 (최근 30일)
jameslk
jameslk 2021년 6월 16일
댓글: jameslk 2021년 6월 16일
syms x y
x=linspace(-4,4);
f =@(x,y) y^3+0.2*exp(-1*x^2)*y^2-2.2039*y^2+0.8155 == 0;
plot(x,y)
x is between -4 and 4
y^3+0.2*exp(-1*x^2)*y^2-2.2039*y^2+0.8155 =0
how can I plot this equation please help me

채택된 답변

VBBV
VBBV 2021년 6월 16일
%if tr
syms x y
f = y^3+0.2*exp(-1*x^2)*y^2-2.2039*y^2+0.8155 == 0;
fimplicit(f,[-4 4])
  댓글 수: 1
jameslk
jameslk 2021년 6월 16일
thanks for your pleasure
but can i get y value which correspond to x and then plot (x,y)??

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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