plot a surface that passes through several points as the input
14 次查看(过去 30 天)
显示 更早的评论
Hi, I have a 210*4 matrix
1st and 2nd columns are x&y
3rd and 4th columns are the z values of two planes which I want to plot and show that they cross each other. I used the script below for 1 plane but it doesn't work:
x = Points(:,1);
y = Points(:,2);
z = Points(:,3); Z = repmat(z,1,210);
surf(x,y,z)
thanks in advance
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 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!