create a matlab script file so that it loads a new configuration file and replace hte existing one in a simulink model
3 次查看(过去 30 天)
显示 更早的评论
FOR NEW CONFIG FILE IN SIMULINK.I know we can do it manually but i would like a matlab script
0 个评论
回答(1 个)
Fangjun Jiang
2018-5-29
Save the configuration set from the sldemo_counters model to my_config_set.m.
% Open the sldemo_counters model
sldemo_counters
% Save the active configuration set to my_config_set.m
Simulink.BlockDiagram.saveActiveConfigSet('sldemo_counters', 'my_config_set.m')
Load the configuration set from my_config_set.m, associate it with the vdp model, and make it the active configuration set.
% Open the vdp model
vdp
% Load the configuration set from my_config_set.m, making it the active
% configuration set for vdp.
Simulink.BlockDiagram.loadActiveConfigSet('vdp', 'my_config_set.m')
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Model Configuration Sets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!