General settings including matfile settings
You can customize MATLAB® using the matlab.general
settings. Access
matlab.general
settings using the root
SettingsGroup
object returned by the settings
function. For example, set the temporary value for the MAT-file save format to
'v7.3'
(where the default is
'v7'
).
s = settings;
s.matlab.general.matfile.SaveFormat.TemporaryValue = 'v7.3'
For more information about settings, see Access and Modify Settings.
SaveFormat
— MAT-File version'v7'
(default) | 'v7.3'
| 'v6'
MAT-File version to save MAT-files to, specified as
'v7.3'
, 'v7'
, or
'v6'
.
For more information about MAT-file versions, see MAT-File Versions.
Example: s.matlab.general.matfile.SaveFormat.TemporaryValue =
'v7.3'
EnableCompression
— Enable compression by default1
or true
(default) | 0
or false
Enable compression by default, specified as a numeric or logical
1
(true
) or 0
(false
). Specify true
to turn on
compression by default or false
to turn off compression
by default. You can use this setting with MAT-File versions 7 and
7.3.
Example: s.matlab.general.matfile.EnableCompression.TemporaryValue
= true