To save the matrix listed as fread as stl file?
조회 수: 6(최근 30일)
표시 이전 댓글
I changed the stl file of the triangulation to the decimal form through the spread, is there a separate way to change the decimal form back to the stl file?
here my code.
r = fopen('Mesh_04.stl');
A=fread(r);
fclose(r);
whos A
Name Size Bytes Class Attributes
A 137784x1 1102272 double
I want to know how to convert decimal form(A) back to stl file.
And I tried to use the function of the site below, but frankly, I have difficulty setting the variable.
Can you help me if you know?
댓글 수: 0
채택된 답변
Walter Roberson
2020년 12월 16일
fid = fopen('New_Mesh_04.stl', 'w');
fwrite(fid, A, 'uint8');
fclose(fid)
추가 답변(0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!