Can u please help me here, how to draw this type type of graph

1 visualización (últimos 30 días)
Parveiz Lone
Parveiz Lone el 25 de Nov. de 2021
Comentada: Parveiz Lone el 25 de Nov. de 2021

Respuestas (1)

Yusuf Suer Erdem
Yusuf Suer Erdem el 25 de Nov. de 2021
Hi Parveiz, try these codes below please, good luck.
clc; clear; close all;
[X,Y,Z] = meshgrid(-2:.2:2);
V = X.*exp(-X.^2-Y.^2-Z.^2);
xslice = [-1.2,0.8,2];
yslice = [];
zslice = [];
slice(X,Y,Z,V,xslice,yslice,zslice)
  3 comentarios
Yusuf Suer Erdem
Yusuf Suer Erdem el 25 de Nov. de 2021
I never experienced this before.

Iniciar sesión para comentar.

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by