MATLAB: How to read a STL file with Matlab

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,

Best Answer

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
Related Question