How to reduce the decimal places if I want to save the mat file from the workspace?
조회 수: 4 (최근 30일)
이전 댓글 표시
Hi,
I handled my structure data, saved it in workspace and then output as mat file, but I don't want my file to be this large. How to reduce the decimal places if I want to save the mat file from the workspace? At first I used preferences to change variables, but it didn't reduce the storage of the mat file. How can I use any functions in MATLAB without coding?
Thank you so much.
댓글 수: 4
Rik
2022년 3월 24일
Although with a touchscreen and the apps in the lint you can probably get quite some distance with a finger. Also no coding.
답변 (1개)
Jan
2022년 3월 24일
There are two options:
- Use a MAT format with compression: -v7.3 . See: doc save
- Convert doubles to singles or (U)INT32/16/8 arrays, if the loss of precision is no problem. CHAR arrays need 2 bytes per element also, so UINT8 might save some space.
There is no magic "make the output files smaller" flag.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!