Want to plot a mesh structure in matlab but in live script this error comes up.
조회 수: 3 (최근 30일)
이전 댓글 표시
댓글 수: 0
답변 (1개)
Chidvi Modala
2021년 6월 3일
The triangulation object returned from stlread(stlFile) might be empty. Hence the error.
You may verify this by executing the following code
stlFile = 'Lift_Arm_New_2.stl';
TR = stlread(stlFile);
And check if the workspace variable TR is empty.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!