I am trying to plot an stl file but it showing error
Show older comments
FV = stlread('Part2.stl');
disp(FV);
plot(FV);
Error using plot
Data must be numeric, datetime, duration or an array convertible to double.
Error in PART1 (line 3)
plot(FV);
Answers (2)
Use triplot
FV = stlread('Part2.stl');
triplot(FV)
1 Comment
Wan Ji
on 19 Aug 2021
Or you can use patch
patch('vertices', FV.Points, 'faces', FV.ConnectivityList, ...
'facevertexcdata',FV.Points(:,2),'facecolor','interp','facealpha',0.4 );
colormap(jet)
Simon Chan
on 19 Aug 2021
1 vote
function trimesh is another option
1 Comment
abu sharique shamshad khan
on 19 Aug 2021
Categories
Find more on Vector Volume Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!