gpt4 book ai didi

matlab - 在 MATLAB 中使用 surf 创建沿 z 轴的堆叠二维矩阵

转载 作者:太空宇宙 更新时间:2023-11-03 20:27:35 24 4
gpt4 key购买 nike

下图只是一个带有 surf 的二维数组的表示。我想创建一个类似的图形,其中 10 个这样的 2d 数组彼此堆叠在一起,沿 z 轴有某种偏移。

figure();
surf(X);
colormap(hsv);
shading interp;
campos([-70 -150 80]);
grid on;
set(gcf,'color','w');

enter image description here

最佳答案

只需调用 surf 几次并使用 hold on,应用逐渐增加的偏移量。

默认情况下(surf 的 1 输入版本),偏移量将影响每个表面显示的颜色。下面是一个包含三个二维数组的示例。请注意,每个峰峰值幅度都不同。

x{1} = .2*peaks(30);
x{2} = .4*peaks(30);
x{3} = .8*peaks(30); % cell array containing three 2D arrays
offset = 7; % desired offset
hold on
for k = 1:numel(x)
surf(x{k} + offset*(k-1))
end
campos([-100 -170 90])
grid on

enter image description here

为防止偏移影响颜色,即为所有表面实现一致的颜色,使用 surf 的 2 或 4 输入版本分别指定高度和颜色:

x{1} = .2*peaks(30);
x{2} = .4*peaks(30);
x{3} = .8*peaks(30);
offset = 7;
hold on
for k = 1:numel(x)
surf(x{k} + offset*(k-1), x{k}) % Only this line has been changed
end
campos([-100 -170 90])
grid on

enter image description here

要根据值生成具有颜色的堆叠平面(无高度变化):修改输入参数如下:

x{1} = .2*peaks(30);
x{2} = .4*peaks(30);
x{3} = .8*peaks(30);
offset = 7;
hold on
for k = 1:numel(x)
surf(repmat(offset*(k-1), size(x{k})), x{k}) % Only this line has been changed
end
campos([-100 -170 90])
grid on

enter image description here

关于matlab - 在 MATLAB 中使用 surf 创建沿 z 轴的堆叠二维矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46395193/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com