Can u please help me here, how to draw this type type of graph
1 回表示 (過去 30 日間)
古いコメントを表示
回答 (1 件)
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!