How to plot multiple layers of heatmap as a function of a third variable in the z direction

7 次查看(过去 30 天)
I wonder how can I plot multiple layers of heatmap and arrange them a function of third vairable in the z direction? like the following image:

回答(1 个)

Chunru
Chunru 2021-12-31
[X,Y,Z] = meshgrid(-2:.2:2);
V = X.*exp(-X.^2-Y.^2-Z.^2);
zslice = [-1.2,0,1.2];
yslice = [];
xslice = [];
slice(X,Y,Z,V,xslice,yslice,zslice)

类别

Help CenterFile Exchange 中查找有关 Data Distribution Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by