How to obtain wireframe plot ?
显示 更早的评论
I am getting 3D surface plot for the following code.
How to get wireframe model for the same?
T = readtable('h500R.xlsx', 'Sheet',1, 'Range','T2:V1001');
T = table2array(T);
Dz=T(:,1);
GammaX=T(:,2);
GammaY=T(:,3);
plot3(GammaX,GammaY,Dz,'.');
kkk=boundary(GammaX,GammaY,Dz);
trisurf(kkk,GammaX,GammaY,Dz,'Facecolor','c');
xlabel('\Upsilonx(deg)');
ylabel('\Upsilony(deg)');
zlabel('Dz(mm)');
回答(1 个)
类别
在 帮助中心 和 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!