如何在多行3d图上创建曲面图?

时间:2014-11-23 13:00:47

标签: matlab plot 3d contour

使用plot3我创建了一个多重离散线3d图。如何填充这些线条创建的三维表面(基本上用表面连接线条)?

1 个答案:

答案 0 :(得分:1)

使用fill3可以提供帮助。

x = [0 0 5 5 0];
y = [5 5 0 0 5];
z = [0 5 5 0 0];
subplot(1,2,1)
plot3(x,y,z,'LineWidth',5);
grid on
subplot(1,2,2)
fill3(x,y,z,'y')
grid on

enter image description here