How can I programmatically set the "analysis mode" of the "machine environment" block in a Simulink model based on SimMechanics using a Matlab script?
1 次查看(过去 30 天)
显示 更早的评论
I'd like to write a Matlab script that allows me to programmatically set the "analysis mode" of the "machine environment" block in my SimMechanics based model. I'll be switching between the "trimming" and "forward dynamics" settings.
Is this possible to do in an .m file?
0 个评论
回答(2 个)
Sebastian Castro
2015-12-8
Yes, you can use the following syntax:
>> blockName = 'myModel/Machine Environment';
>> type = get_param(blockName,'AnalysisType');
>> set_param(blockName,'AnalysisType','Trimming');
>> set_param(blockName,'AnalysisType','Forward Dynamics')
- Sebastian
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!