set parameter value from mfile
2 次查看(过去 30 天)
显示 更早的评论
how to set values on different periods of time in simulink from m file? during simulation , for example if i use this command set_param('modelname/variable','value',' ');
1 个评论
Walter Roberson
2012-11-5
Please use better tags for this Question; see http://www.mathworks.co.uk/matlabcentral/answers/43073-a-guide-to-tags
回答(3 个)
Azzi Abdelmalek
2012-11-3
编辑:Azzi Abdelmalek
2012-11-4
You must stop or pause simultion before seting new parameters
0 个评论
Raju Purohit
2012-11-4
There are several ways.
- You can pause the simulation at any instant and go to the particular block parameters and change the values and play the simulation again. But you have to tolerate the pain of pausing the simulation at stipulated times and running again each time you have to change parameters. This is the easiest though. This doesn't use m file.
- Otherwise if your parameters are to be changed and you know the parameter values and time intervals beforehand, you can code them in Embedded MATLAB Function block. (Don't forget to include "eml.extrinsic('set_param');" in this block).
- Or (the best method) you can create a GUI if you are required to change the parameters continuously without pausing the simulation and when you don't know the time and parameter values beforehand. This is more versatile and less painful. You will have to code the GUI m file.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!