gpt4 book ai didi

Matlab:向二维图添加第三维

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

我有以下代码生成二维图或 2 个正态分布:

        res = zeros(2, 320); 
index = 1:320;

% assign some data to the res array and then approximate:

PD = fitdist(index','normal', 'frequency', res(1,:)')
pdfNormal = normpdf(index',PD.mu,PD.sigma);
plot(index', pdfNormal, 'Color', 'r', 'LineWidth', 2);
hold on;
PD = fitdist(index','normal', 'frequency', res(2,:)')
pdfNormal = normpdf(index',PD.mu,PD.sigma);
plot(index', pdfNormal, 'Color', 'b', 'LineWidth', 2);

这段代码生成了下面的图片:

2D Plot of my data

现在我想知道如何为该图添加第三维?本质上,我想绘制另外 2 个正态分布,但这次是在 Z 轴上,即,在三维空间中。

有人知道我如何轻松做到这一点吗?

非常感谢!

最佳答案

如果我没理解错的话,您可以简单地为绘图指定不同的 z 值。示例:

%# some random data
x = 1:300;
y = zeros(5,300);
for i=1:5
y(i,:) = normpdf(x,100+i*20,10);
end

%# plot
hold on
clr = lines(5);
h = zeros(5,1);
for i=1:5
h(i) = plot(x, y(i,:), 'Color',clr(i,:), 'LineWidth',2);
set(h(i), 'ZData',ones(size(x))*i)
end
zlim([0 6]), box on, grid on
view(3)
hold off

screenshot

关于Matlab:向二维图添加第三维,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11630898/

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