How to plot below function of two variables

1 visualización (últimos 30 días)
HEMANT K NASHINE
HEMANT K NASHINE el 15 de Ag. de 2019
Editada: the cyclist el 15 de Ag. de 2019
  1 comentario
the cyclist
the cyclist el 15 de Ag. de 2019
It's unclear to me how to handle the case when x is in [0,1] but y is not.
However, my solution (which only covers the known cases) should give you what you need.

Iniciar sesión para comentar.

Respuesta aceptada

the cyclist
the cyclist el 15 de Ag. de 2019
Editada: the cyclist el 15 de Ag. de 2019
x = 0 : 0.02 : 2; % 2 is not equal to infinity, but it shows the behavior.
y = 0 : 0.02 : 2;
[xx,yy] = meshgrid(x,y);
f = 3.*(xx<=1 & yy<=1) + exp(xx+yy).*(xx>1 & yy>1);
figure
h = mesh(xx,yy,f);

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer 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