Plot surface from different lines
显示 更早的评论
Hi,
I have several plots which are in fact just lines. Now I would like to add these lines to form a surface and create a plot of this surface. How can I do that? Thanks in advance.
回答(1 个)
Star Strider
2017-1-11
0 个投票
From your description, I would use the plot3 function. That is likely as close as you can get to a surface with your lines.
Consider using an interpolation function (for example scatteredInterpolant) to create a complete surface from them.
2 个评论
Auryn_
2017-1-11
Star Strider
2017-1-11
In recent MATLAB releases (I’m using R2016b), the mesh and surf functions allow you to use vectors for the independent variables, so you can just do something like this:
The Code:
x = 1:50; % Create Data
y = 1:6; % Create Data
z = rand(6,50); % Create Data
figure(1)
mesh(x, y, z)
grid on
类别
在 帮助中心 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!