Simulink Preferences
Settings for Simulink Editor and model files
Description
Use Simulink® Preferences to specify Simulink editing environment options and default behaviors. Your settings affect the behavior of all Simulink models, including those currently open and all subsequent models. Your preference settings are preserved for the next time you use the software.
Use the Simulink Preferences window to:
Set preferences for generated file folders
Set background colors for print or export
Set model block, callback, and sample time legend display
Configure Simulink Editor
Set preferences for file change, autosave, version notifications, and other behaviors relating to model files
Note
To remove items that appear in the Simulink Toolstrip and context menus, see Disable Simulink Toolstrip and Context Menu Actions.
Open the Simulink Preferences
Simulink Toolstrip: On the Modeling tab, in the Evaluate and Manage section, select Environment > Simulink Preferences.
MATLAB® Command Window: Enter
slprivate('showprefs')
.
Examples
Show Callback Tracing for Double Mass-Spring System
Callbacks are commands you can define that execute in response to a specific modeling action, for example, opening a model or stopping a simulation. When you enable Show Callback Tracing in Simulink Preferences, the MATLAB Command Window displays callbacks as they are invoked. For more information on callbacks, see Customize Model Behavior with Callbacks.
Display the callback that runs when you open the Double Spring Mass System model. The example model represents a double spring-mass-damper system with a periodically varying forcing function.
Open Simulink Preferences. In the Simulink Toolstrip of any open model window, on the Modeling tab, in the Evaluate and Manage section, select Environment > Simulink Preferences.
In Simulink Preferences, on the General Pane, select Show Callback Tracing.
Click Apply.
If the Double Spring Mass System model is open, close it.
Open the Double Spring Mass System model.
openExample('simulink_general/sldemo_dblcart1Example')
Evaluating callback 'PostLoadFcn' for sldemo_dblcart1 Callback: crtanim2([],[],[],0,1);
The invoked callback is a
PostLoadFcn
callback that runs thecrtanim2
function.You can use the information about the type of callback to find where the commands that it executes are specified. To do so for this example, right-click the canvas and select Model Properties.
On the Callbacks tab, select PostLoadFcn*. The right pane of the Model Properties dialog box shows the callback that ran when the model opened.
Turn Off Display of Variable Values in Block Parameters Dialog Box
By default, when you specify a block parameter as a variable, the text box in the Block Parameters dialog box where you specify the parameter displays the value of the variable. You can use the display to obtain the value that a variable has at a certain point during simulation, and to debug your model.
You can use Simulink Preferences to turn the display off, for example when you are demonstrating a model and the value of the variable is confidential, or when the display gives away the answer to a problem that your students or trainees are supposed to solve.
In this example, view and then turn off the display of the heater air temperature in
the Thermal Model of a House model. The heater air temperature is
specified as the variable THeater
in the Heater
subsystem.
To open the model, use this command.
openExample('simulink_general/sldemo_househeatExample')
To open the
Heater
subsystem, double-click the Subsystem block.To see the value of the
THeater
variable, double-click theHeater Air Temperature
block. The Block Parameters dialog box opens.The Constant value text box displays the name of the variable on the left and the value of the variable on the right.
Close the Block Parameters dialog box.
Open Simulink Preferences. In the Simulink Toolstrip, on the Modeling tab, in the Evaluate and Manage section, select Environment > Simulink Preferences.
In Simulink Preferences, on the Editor Pane, turn off Display value of parameter when specified using variables.
Click Apply.
In the model, double-click the
Heater Air Temperature
block. The Block Parameters dialog box opens. The Constant value text box no longer displays a value.
Parameters
Simulation cache folder
— Path to simulation cache folder
pwd
(default)
Simulink cache files contain build artifacts that can speed up simulation and code generation. For more information, see Share Simulink Cache Files for Faster Simulation and Manage Build Process Folders (Simulink Coder).
The cache files are stored in the simulation cache folder. The simulation cache folder is a root folder.
Specify the path to the simulation cache folder as a character vector.
You can specify an absolute or relative path to the folder. For example:
'C:\Work\mymodelsimcache'
and'/mywork/mymodelsimcache'
specify absolute paths.'mymodelsimcache'
is a path relative to the current working folder (pwd
). The software converts a relative path to an absolute path when you set the preference. For example, ifpwd
is'/mywork'
, the result is'/mywork/mymodelsimcache'
.'../test/mymodelsimcache'
is a path relative to'pwd'
. If'pwd'
is'/mywork'
, the result is'/test/mymodelsimcache'
.
Example: 'C:\Work\mymodelsimcache'
Programmatic Use
Parameter:
CacheFolder |
Type: character vector |
Default:'pwd' |
Code generation folder
— Path to code generation folder
pwd
(default)
The Simulink Coder™ build process uses system target files to generate production code from a Simulink model. For more information, see Manage Build Process Folders (Simulink Coder).
The production code is stored in the code generation folder. The code generation folder is a root folder.
Specify the path to the code generation folder as a character vector.
You can specify an absolute or relative path to the folder. For example:
'C:\Work\mymodelgencode'
and'/mywork/mymodelgencode'
specify absolute paths.'mymodelgencode'
is a path relative to the current working folder (pwd
). The software converts a relative path to an absolute path when you set the preference. For example, ifpwd
is'/mywork'
, the result is'/mywork/mymodelgencode'
.'../test/mymodelgencode'
is a path relative to'pwd'
. If'pwd'
is'/mywork'
, the result is'/test/mymodelgencode'
.
Example: 'C:\Work\mymodelgencode'
Programmatic Use
Parameter:
CodeGenFolder |
Type: character vector |
Default:'pwd' |
Code generation folder structure
— Structure of code generation folder
Model specific
(default) | Target environment subfolder
The Simulink Coder build process uses system target files to generate production code from a Simulink model. For more information, see Manage Build Process Folders (Simulink Coder).
The production code is stored in the code generation folder. The code generation folder is a root folder.
Select the structure of the code generation folder.
Model specific
— Store the code in folders named after the model.Target environment subfolder
— Store the code in folders named after the target environment for which the model was configured.
Programmatic Use
Parameter:
CodeGenFolderStructure |
Values:'ModelSpecific' |'TargetEnvironmentSubfolder' |
Default:'ModelSpecific' |
Print
— Canvas (background) color of printed models
White
(default) | Match Canvas Color
Specify whether the color of the model canvas is white when printed or matches the color of the digital model. For more information on printing models, see Print Model Diagrams.
Programmatic Use
Parameter:
PrintBackgroundColorMode |
Values:
'White' | 'MatchCanvas' |
Default:
'White' |
Export
— Canvas (background) color of models exported to different file format
Match Canvas Color
(default) | White
| Transparent
Specify whether the color of the model canvas when exported to a different file
format matches the color of the digital model, is white, or is transparent. For example,
you can export models to the .png
format with a transparent
background. For more information on exporting a model to a different file format, see
Print Models to Image File Formats.
Match Canvas Color
— Match the canvas color of the model.White
— Use a white canvas.Transparent
— Use a transparent canvas so that whatever is behind the canvas is visible.
Programmatic Use
Parameter:
ExportBackgroundColorMode |
Values:
'MatchCanvas' | 'White' |
'Transparent' |
Default:'MatchCanvas' |
Clipboard
— Canvas (background) color of models exported to different application
Match Canvas Color
(default) | White
| Transparent
Specify whether the color of the model canvas when exported to a different application matches the color of the digital model, is white, or is transparent. For more information on exporting a model to a different application, see Copy Diagrams as Images.
Match Canvas Color
— Match the canvas color of the model.White
— Use a white canvas.Transparent
— Use a transparent canvas, so that whatever is behind the canvas image shows through.
Programmatic Use
Parameter:
ClipboardBackgroundColorMode |
Values:
'MatchCanvas' | 'White' |
'Transparent' |
Default:'MatchCanvas' |
Keyboard
— Simulink Online™ keyboard layout
English (US)
(default) | Afghani
| Albanian
| Amharic
| Arabic
| ...
This Simulink Online preference lets you specify the keyboard layout that you are using.
The software attempts to automatically detect the keyboard layout. When the software
is unable to automatically detect the keyboard layout, the software uses
English (US)
as the default keyboard layout.
The available keyboard layouts include:
Afghani
Albanian
Amharic
Arabic
Arabic (Morocco)
Arabic (Syria)
Armenian
Azerbaijani
Bambara
Belarusian
Belgian
Berber (Algeria, Latin characters)
Bosnian
Braille
Bulgarian
Burmese
Chinese
Croatian
Czech
Danish
Dhivehi
Dutch
Dzongkha
English (Australian)
English (Cameroon)
English (Ghana)
English (Nigeria)
English (South Africa)
English (UK)
English (US)
Esperanto
Estonian
Faroese
Filipino
Finnish
French
French (Canada)
French (Democratic Republic of the Congo)
French (Guinea)
French (Togo)
Georgian
German
German (Austria)
German (Switzerland)
Greek
Hebrew
Hungarian
Icelandic
Indian
Indonesian (Jawi)
Iraqi
Irish
Italian
Japanese
Kazakh
Khmer (Cambodia)
Korean
Kyrgyz
Lao
Latvian
Lithuanian
Macedonian
Malay (Jawi)
Maltese
Maori
Moldavian
Mongolian
Montenegrin
Nepali
Norwegian
Persian
Polish
Portuguese
Portuguese (Brazil)
Romanian
Russian
Serbian
Sinhala (phonetic)
Slovak
Slovenian
Spanish
Spanish (Latin American)
Swahili (Kenya)
Swahili (Tanzania)
Swedish
Taiwanese
Tajik
Thai
Tswana
Turkish
Turkmen
Ukrainian
Urdu (Pakistan)
Uzbek
Vietnamese
Wolof
Option
— Simulink Online keyboard layout option
Default
| Cherokee
| English (US, with euro on 5)
| ...
This Simulink Online preference lets you select the keyboard layout option that you are using. The available keyboard layout options depend on what you specify for the Keyboard preference.
For example, when Keyboard is set to English
(US)
, the available keyboard layout options include:
Default
(default)Cherokee
English (US, with euro on 5)
English (US, international with dead keys)
English (US, alternative international)
English (Colemak)
English (Dvorak)
English (Dvorak, international with dead keys)
English (Dvorak alternative international no dead keys)
English (left handed Dvorak)
English (right handed Dvorak)
English (classic Dvorak)
English (Programmer Dvorak)
Russian (US, phonetic)
English (Macintosh)
English (international AltGr dead keys)
English (the divide/multiply keys toggle the layout)
Serbo-Croatian (US)
English (Workman)
English (Workman, international with dead keys)
Show callback tracing
— Option to display model callbacks
off
(default) | on
Specify whether to display the model callbacks that Simulink invokes when simulating a model. Enabling Show callback tracing displays the callbacks in the MATLAB Command Window as they are invoked. For an example, see Show Callback Tracing for Double Mass-Spring System.
Programmatic Use
Parameter:
CallbackTracing |
Values:'off' |'on' |
Default:'off' |
Open the timing legend when the sample time display is changed
— Option to display sample time legend when sample time display changes
on
(default) | off
Specify whether to display the sample time legend whenever you change the sample
time display. To change the display, in the Simulink Toolstrip, on the Debug tab, in the
Diagnostics section, click Information
Overlays. In the Sample Time section, select
Colors
, Text
, or both. For more
information on the sample time legend, see View Sample Time Information.
Programmatic Use
Parameter:
OpenLegendWhenChangingSampleTimeDisplay |
Values:
'on' | 'off' |
Default:
'on' |
Use classic diagram theme
— Option to use pre-R2012b visual theme in editor
off
(default) | on
Option to view diagrams in the Simulink Editor with the visual theme from before R2012b. To use the visual theme
from before R2012b, set Use classic diagram theme to
on
. To use the visual theme introduced in R2012b, set
Use classic diagram theme to off
.
Note
Content preview does not display when Use classic diagram
theme
is enabled.
Programmatic Use
To programmatically specify whether to use the visual theme introduced in R2012b
in the editor, set the EditorModernTheme
parameter. To use the
visual theme from before R2012b, set EditorModernTheme
to
'off'
. To use the visual theme introduced in R2012b, set
EditorModernTheme
to 'on'
.
Parameter:
EditorModernTheme |
Values:
'on' | 'off' |
Default:
'on' |
Line crossing style
— Change default display for signal lines that cross
Tunnel
(default) | Line Hop
| None
Change the default display for signal lines that cross.
Tunnel
— Causes straight signal lines that cross each other but are not connected to display a slight gap before and after the vertical line where it intersects the horizontal line.Line Hop
— Shows a bend where the vertical line intersects the horizontal line. The software adjusts the side the bend appears on to avoid overlapping with a block icon. If having the bend on either side overlaps with a block, the software uses a solid line.None
— Uses solid lines. This format can improve performance slightly for updating very large models. With the Use classic diagram theme preference enabled, the software uses a solid line.
Programmatic Use
Parameter:
EditorPathXStyle |
Values:
'grad_pin' | 'hop' |
'none' |
Default:
'grad_pin' |
Scroll wheel controls zooming
— Option to use scroll wheel to zoom
on
(default) | off
Option to use the scroll wheel to zoom without pressing the Ctrl key modifier. If you enable Scroll wheel controls zooming on macOS platforms with an Apple Magic Trackpad, a panning gesture causes zooming. For more information on zooming, see Zoom and Pan.
Programmatic Use
Parameter:
EditorScrollWheelZooms |
Values:'on' |'off' |
Default:'on' |
Content preview displays for new hierarchical elements
— Option to display preview of contents on cover of hierarchical elements
on
(default) | off
Specify whether the cover of hierarchical model elements should display a preview of the contents of the elements. For example, a Subsystem block can display a preview of the model that it contains. The setting only applies to elements that are added to the model after the setting is enabled.
Programmatic Use
Parameter:
EditorContentPreviewDefaultOn |
Values:
'on' | 'off' |
Default:
'on' |
Enable smart editing features
— Option to display model callbacks
on
(default) | off
Specify whether to enable the use of these smart editing cues to perform common model editing tasks quickly:
Quick insert — Add a block to a model by typing a block name.
Tear-off block addition — Add a complementary block from a block tear-off cue. For example, when you add a GoTo block, you can use a tear-off to add a corresponding From block.
Multiselection actions — Perform actions from the prompt that appears when you select multiple blocks.
Single-selection actions — Perform actions from the prompt that appears when you select a block or a signal.
Programmatic Use
Parameter:
EditorSmartEditing |
Values:
'on' | 'off' |
Default:
'on' |
Edit key parameter when adding new blocks
—
on
(default) | off
Specify whether to be prompted to enter a key parameter when you add a block to a model.
Programmatic Use
Parameter:
EditorSmartEditingHotParam |
Values:
'on' | 'off' |
Default:
'on' |
Use docked Diagnostic Viewer
— Option to open Diagnostic Viewer docked in model window
on
(default) | off
Specify whether the Diagnostic Viewer should open docked in the Simulink model window. To open the Diagnostic Viewer, in the Simulink Toolstrip, on the Debug tab, in the
Diagnostics section, click Diagnostics and
select Diagnostic Viewer
.
Display value of parameter when specified using variables
— Option to evaluate parameter specified as variable or variable expression
on
(default) | off
When you specify the value of a Simulink parameter as a variable or as an expression that contains variables, the Block Parameters dialog box and the Property Inspector can display the value of the variable or expression. The text box where you enter the parameter value displays the variable or expression on the left and the value on the right. For more information, see View Values of Parameters Set as Variables. For an example, see Turn Off Display of Variable Values in Block Parameters Dialog Box.
Specify whether to enable the display of parameter values.
Open Code View window after building a model
— Option to open Code View after you build model or generate code
on
(default) | off
When you build a model or generate code using Embedded Coder®, the Code View displays the generated code alongside your model. You can use the Code View to:
Trace between model elements and the generated code.
Navigate between sections of the generated code.
View information about the generated code such as static code metrics and code profiling results.
File format for new models and libraries
— Save new models and libraries in the SLX or MDL format
SLX
(default) | MDL
Specify the default file format for new models and libraries.
SLX
— Save new models and libraries in SLX formatMDL
— Save new models and libraries in MDL format
Programmatic Use
Parameter:
ModelFileFormat |
Values:
'mdl' | 'slx' |
Default:
slx |
Save a thumbnail image inside SLX files
— Save model screenshot to display in Current Folder browser preview pane
on
(default) | off
Specify whether to save a small screenshot of the model with the SLX file to display in the Current Folder browser preview pane.
Tips
If your model is large and you want to reduce the time the model takes to save, clear this parameter to avoid saving thumbnail model images.
Programmatic Use
Parameter:
SaveSLXThumbnail |
Default:
on |
Values:
'on' | 'off' |
Updating or simulating the model
— Option to receive notification if model has changed on disk when updating or simulating the model
on
(default) | off
Specify whether to notify if a different MATLAB session changes the model on disk while you are updating or simulating the model. When Updating or simulating the model is enabled, use Action in Model File Preferences to specify the action to take if the model has changed. For more information, see Model File Change Notification.
Tips
To programmatically check whether the model has changed on disk since it was
loaded, use the function slIsFileChangedOnDisk
.
Programmatic Use
Parameter:
MDLFileChangedOnDiskChecks |
Type: struct, field name: CheckWhenUpdating |
Values:
true | false | 1 |
0 |
Default:
true |
Action
— Action to take if file has changed on disk
Warning
(default) | Error
| Reload model (if unmodified)
| Show prompt dialog
Select the action to take if the file has changed on disk since it was loaded. This parameter is enabled by the Updating or simulating the model parameter.
Warning
— Displays a warning in the MATLAB Command Window.Error
— Displays an error. If simulating programmatically, the error appears in the MATLAB Command Window. If simulating interactively, the error appears in a Simulation Diagnostics window.Reload model (if unmodified)
— Reloads if the model is unmodified. If the model is modified, the prompt dialog box appears.Show prompt dialog
— Shows prompt dialog box in which you can choose to close and reload or ignore the changes.
For more information, see Model File Change Notification.
Tips
To programmatically check whether the model has changed on disk since it was
loaded, use the function slIsFileChangedOnDisk
.
Programmatic Use
Parameter:
MdlFileChangedOnDiskHandling |
Values:
'Warning' | 'Error' | 'Reload model
(if unmodified)' | 'Show prompt dialog' |
Default:
'Warning' |
First editing the model
— Option to receive notification if model has changed on disk when editing the model
on
(default) | off
Specify whether to notify if a different MATLAB session changes the model on disk while, for example, you are editing the model. For more information, see Model File Change Notification.
Any interactive operation that modifies the block diagram, for example, adding a block, causes a warning dialog box to appear.
Any programmatic operation that causes the block diagram to be modified, for
example, a call to set_param
, causes a warning in the MATLAB Command Window.
Tips
To programmatically check whether the model has changed on disk since it was
loaded, use the function slIsFileChangedOnDisk
.
Programmatic Use
Parameter:
MDLFileChangedOnDiskChecks |
Type: struct, field name: CheckWhenEditing |
Values:
true | false | 1 |
0 |
Default:
true |
Saving the model
— Option to receive notification if model has changed on disk when saving the model
on
(default) | off
Specify whether to notify if a different MATLAB session changes the model on disk while you are saving the model.
When the notification is enabled, saving the model in the Simulink Editor causes a dialog box to appear. In the dialog box, you can choose to overwrite or save with a new name.
The save_system
function displays an error, unless you use the
OverwriteIfChangedOnDisk
option.
For more information, see Model File Change Notification.
Tips
To programmatically check whether the model has changed on disk since it was
loaded, use the function slIsFileChangedOnDisk
.
Programmatic Use
Parameter:
MDLFileChangedOnDiskChecks |
Type: struct, field name: CheckWhenSaving |
Values:
true | false | 1 |
0 |
Default:
true |
Save before updating or simulating the model
— Option to autosave before updating or simulating model
on
(default) | off
Specify whether to automatically save a backup copy of the model before updating or simulating.
The copy is saved in the same directory as the model, with the name
or
MyModel
.slx.autosave
.MyModel
.mdl.autosave
If you open or load a model that has a more recent autosave copy available, then after the model loads, a dialog box prompts to restore, ignore, or discard the autosave copy. If multiple models are involved, then the Model Recovery dialog box appears.
For each model listed, you can select any of the options in this table.
Option | Result |
---|---|
Restore | Overwrite the original model file with the autosave copy and delete the
autosave copy. The software will close the model and reload from the restored
file. If you select Keep a copy of original model file, you
can save copies of the original model files named
or
. |
Delete Autosave | Delete the autosave copy. |
Ignore | Leave the model and the autosave copy untouched. This setting is the default. The next time you open the model, the Model Recovery dialog will reappear and you can choose to restore or delete autosave files. |
Alternatively, click the Restore All, Delete All, or Ignore All button to select that option for all listed models.
Closing a modified model deletes any autosave copy.
The software might not autosave a model for these reasons:
Autosave does not occur for models that are part of the MATLAB installation, so you do not create autosave copies of those models.
Autosave does not occur if the autosave file or location is read-only.
Autosave does not occur in the Parallel Computing Toolbox™ software.
If a segmentation violation occurred, then the last autosave file for the model reflects the state of the autosave data prior to the segmentation violation. Because Simulink models might be corrupted by a segmentation violation, the software does not autosave a model after a segmentation violation occurs.
Programmatic Use
Parameter:
AutoSaveOptions |
Type: struct, field name: SaveOnModelUpdate |
Values:
true | false | 1 |
0 |
Default:
true |
Save backup when overwriting a file created in an older version of Simulink
— Option to save copy of file created in older Simulink version before overwriting
on
(default) | off
Specify whether to automatically save a backup copy of the model when overwriting with a newer Simulink version.
The backup copy is saved in the same directory as the model, with the name
or
MyModel
.slx.Version
,
where MyModel
.mdl.Version
Version
is the last version that saved the model, for
example, R2010a
.
Tips
To recover the original model, rename the backup copy to
or
MyModel
.mdl
by deleting the
MyModel
.slxVersion
suffix.
Programmatic Use
Parameter:
AutoSaveOptions |
Type: struct, field name: SaveBackupOnVersionUpgrade |
Values:
true | false | 1 |
0 |
Default:
true |
Save backup before exiting
— Simulink Online option to save copy of file before exiting
on
(default) | off
This Simulink Online preference lets you specify whether to automatically save a backup copy of modified models when you exit a Simulink Online session.
The copy is saved in the same directory as the model, with the name
or
MyModel
.slx.autosave
.MyModel
.mdl.autosave
Notify when loading an old model
— Option to notify when model being loaded was last saved in older MATLAB version
off
(default) | on
Specify whether to be notified when loading a model last saved in an older Simulink version. The notification appears in the MATLAB Command Window.
Tips
Run the Upgrade Advisor to convert the block diagram to the format of the current Simulink version.
For advice on upgrading a model to the current Simulink version, see Model Upgrades.
Programmatic Use
Parameter:
NotifyIfLoadOldModel |
Values:
'on' | 'off' |
Default:
off |
Do not load models created with a newer version of Simulink
— Option to prevent models created in newer Simulink version from loading
on
(default) | off
Specify whether to load a model last saved in a newer Simulink version.
When this option is selected and you try to load a model last saved in a newer Simulink version, the model does not load, and an error message appears in the MATLAB Command Window.
When this option is cleared and you try to load a model last saved in a newer Simulink version, the model loads, and a warning message appears in the MATLAB Command Window.
Tips
If possible, use the Save As option to convert the block diagram to the format of the desired Simulink version. The Save As option allows you to save a model created with the latest Simulink version in formats used by earlier versions. See Export Model to Previous Version of Simulink.
Programmatic Use
Parameter:
ErrorIfLoadNewModel |
Values:
'on' | 'off' |
Default:
on |
Do not load models that are shadowed on the MATLAB path
— Option to prevent models with same name as other models higher on MATLAB path from loading
off
(default) | on
Specify whether to load a model that is shadowed by another file of the same name higher on the MATLAB path.
When the option is enabled and you try to load a shadowed model, the model does not load, and an error message appears in the MATLAB Command Window.
The option applies when you try to open or load a model or library by either:
Selecting a file in the current folder browser
Calling
open_system
orload_system
with a path to a file in a different folder to the current folder
When the option is not enabled and you try to load a shadowed model, the model loads, and a warning message appears in the MATLAB Command Window.
Programmatic Use
Parameter:
ErrorIfLoadShadowedModel |
Values:
'on' | 'off' |
Default:
off |
Verify digital signature of protected model before opening
— Option to verify signature before opening protected model
off
(default) | on
Specify whether to verify the signature on a protected model before opening the model.
When enabled, you cannot load a protected model that does not have a verified digital signature.
An error message appears if the signature verification process finds any of the these conditions:
The protected model was changed after it was signed.
The protected model was not signed.
The protected model was signed with an expired certificate.
The protected model was self-signed with a certificate issued by the author.
The protected model was signed with a missing or invalid certificate.
The certificate in your system certificate authority store is missing or invalid.
The model was signed with an invalid key.
Verification does not check if the certificate expired or was revoked after the protected model was signed.
Verification runs when you try to open or load a protected model by:
Simulating or generating code for a model that references the protected model
Performing an action that updates the diagram for a model that references the protected model
Opening the web view of the protected model
Opening the protected model report
You can suppress the diagnostic for an unverified protected model when the error message appears in the Diagnostic Viewer. The error cannot be suppressed if the signature is not valid because model was changed after it was signed.
Programmatic Use
Parameter:
ProtectedModelValidateCertificate |
Values:
'on' | 'off' |
Default:
off |
Notify when opening a model in an unopened project
— Option to open project when opening associated model
on
(default) | off
Specify whether opening a model prompts you to open the project that contains a model.
For more information on projects, see Create a Project from a Model.
Programmatic Use
get_param(Object
,ParameterName
,...ParameterNameN)
Object
,ParameterName
,...ParameterNameN)To get the value that a preference is set to programmatically, use
get_param(
.
For
example:Object
,ParameterName
,...ParameterNameN)
get_param(0,'EditorModernTheme')
set_param(Object
,ParameterName
,Value
,...ParameterNameN,ValueN)
Object
,ParameterName
,Value
,...ParameterNameN,ValueN)To set preferences programmatically, set the root parameter using
set_param(
.
For
example:Object
,ParameterName
,Value
,...ParameterNameN,ValueN)
set_param(0,'EditorModernTheme','off')
Note
Parameters set programmatically do not persist between Simulink sessions.
Version History
Introduced before R2006aR2022b: Simulink Block Parameters dialog box and Property Inspector display values of variables
Starting in R2022b, when you specify the value of a Simulink parameter as a variable or as an expression that contains variables, the Block Parameters dialog box and the Property Inspector display the value of the variable or the expression.
The text box where you enter the parameter value displays the variable or expression on the left and the value on the right.
To turn the value display off, in the Simulink Toolstrip, on the Modeling tab, in the Evaluate
and Manage section, open the Environment menu and select
Simulink Preferences
. On the Editor tab,
clear Display value of parameter when specified using variables
.
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)