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

조회 수: 1 (최근 30일)
Parveiz Lone
Parveiz Lone 2021년 11월 25일
댓글: Parveiz Lone 2021년 11월 25일

답변 (1개)

Yusuf Suer Erdem
Yusuf Suer Erdem 2021년 11월 25일
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
Yusuf Suer Erdem
Yusuf Suer Erdem 2021년 11월 25일
I never experienced this before.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by