How to read a STL file with Matlab?

27 views (last 30 days)
Dear all, I would like to convert a STL file with matlab. I use stlread but i can't read the file. Thank you for your help.
Best regards,

Accepted Answer

Chigozie Nwankpa
Chigozie Nwankpa on 3 Oct 2017
Edited: Walter Roberson on 3 Oct 2017
Hi Abubacar,
I think that you need to plot the surface of the STL file in a mesh.
Sample code might be of help
b = figure(2);
model = stl2matlab('ImageName.stl');
patch(model{1},model{2},model{3},'b');
axis equal; view(30,60);
Wish you luck

More Answers (0)

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!