How to use ezplot

18 visualizaciones (últimos 30 días)
Kentji Paolo Mappala
Kentji Paolo Mappala el 10 de Ag. de 2020
Editada: Walter Roberson el 10 de Ag. de 2020
Hi im new to matlab, ive tried ez plot but it wont run x^2 - 9y^2=81. Can someone help?

Respuestas (2)

Walter Roberson
Walter Roberson el 10 de Ag. de 2020
ezplot(@(x,y)x.^2 - 9*y.^2 - 81)

Star Strider
Star Strider el 10 de Ag. de 2020
Editada: Star Strider el 10 de Ag. de 2020
The ezsurf (and fsurf) functions accept only single-variable functions.
Try this:
figure
ezcontour(@(x,y) x^2 - 9*y^2 - 81, [-10 10 -10 10])
the fcontour, ezsurf and fsurf functions are also options.
Make appropriate changes to get the result you want.
EDIT — (9 Aug 2020 at 4:15)
Another possibility:
figure
hec = ezcontour(@(x,y) x^2 - 9*y^2, [-50 50 -50 50]);
hec.LevelList = 81;
.
  1 comentario
Walter Roberson
Walter Roberson el 10 de Ag. de 2020
Editada: Walter Roberson el 10 de Ag. de 2020
but ezplot did do an implicit plot https://www.mathworks.com/help/matlab/ref/ezplot.html

Iniciar sesión para comentar.

Categorías

Más información sobre Surface and Mesh 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