how can i plot this equation?

1 次查看(过去 30 天)
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