How to reduce the decimal places if I want to save the mat file from the workspace?

5 次查看(过去 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 个评论
Stephen23
Stephen23 2022-3-24
@Rik: it sounds like you found the solution too: "use Matlab without mouse and keyboard" definitely means no coding !
Rik
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
Jan 2022-3-24
There are two options:
  1. Use a MAT format with compression: -v7.3 . See: doc save
  2. 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.

类别

Help CenterFile 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!

Translated by