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 个)

KSSV
KSSV 2020-5-8

0 个投票

Read about trimesh, triplot, mesh.

类别

回答:

2020-5-8

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by