how can i plot this equation?

4 visualizaciones (últimos 30 días)
jameslk
jameslk el 16 de Jun. de 2021
Comentada: jameslk el 16 de Jun. de 2021
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

Respuesta aceptada

VBBV
VBBV el 16 de Jun. de 2021
%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 comentario
jameslk
jameslk el 16 de Jun. de 2021
thanks for your pleasure
but can i get y value which correspond to x and then plot (x,y)??

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by