我有一个问题,我将数据格式化为在 Z 轴上有 n 个数据点,并且每个 Z 数据点都有 m 个对应的 x 和 y 点。我本质上想要有 n 个 2D m 点图,但合并到一个曲面中。
我的数据采用以下形式:
z = [0 1 2 3]
data(:, :, 1) = [0 1 2; 2 2 2] (the first row corresponds to the x points, second to the y; the page (the 1) corresponds to the respective z point at which I am plotting said x and y points)
所以本质上,在z(i)
,我想data(:, :, i)
绘制。然后最后全部合并成一个表面。我将如何做到这一点?
一个可能有助于想象这种情况的例子是,如果data(:, :, i)
所有i
都是均匀的,就像上面的样本一样,那么将绘制一个立方体表面(体积 12)。