setDefaultConfigurationName
Class: Simulink.VariantConfigurationData
Package: Simulink
Set name of the default variant configuration for a variant configuration data object
Syntax
vcdataObj.setDefaultConfigurationName(nameOfConfiguration)
Description
vcdataObj.setDefaultConfigurationName(
sets
the default configuration name. A variant configuration must exist
with the same name. If an empty value is passed, then the default
configuration name is cleared.nameOfConfiguration
)
Input Arguments
|
Name of the configuration to be set as the default. |
Note
Setting a default variant configuration for a variant configuration data object is not recommended. Activate and validate the model using a specific variant configuration instead. If you set a default configuration, compiling or simulating the model will apply the default configuration irrespective of the variant control variable values in the global workspace.
Examples
% Define the variant configuration data object vcdataObj = Simulink.VariantConfigurationData; % Add the LinInterExp variant configuration vcdataObj.addConfiguration('LinInterExp',... 'Linear Internal Experimental Plant Controller'); % Set the configuration LinInterExp as default vcdataObj.setDefaultConfigurationName('LinInterExp'); % Obtain the default variant configuration dconfig = vcdataObj.getDefaultConfiguration