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일

답변:

2020년 5월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by