Class: Simulink.VariantConfigurationData
Package: Simulink
Set name of the default variant configuration for a variant configuration data object
vcdataObj.setDefaultConfigurationName(nameOfConfiguration)
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
)
|
Name of the configuration to be set as the default. |
% 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