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!