How can I conditionally disable callbacks during a model build in Simulink?
5 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2013 年 2 月 15 日
編集済み: MathWorks Support Team
2023 年 6 月 6 日
I have a Simulink model in Simulink version R2023a that has many callbacks. As a result, opening, editing, and saving it is very slow. Most of the time I do not want to run the model, I just want to make some edits and this is slowing my work significantly.
Is there any way to temporarily disable callbacks in a model?
採用された回答
MathWorks Support Team
2023 年 6 月 6 日
編集済み: MathWorks Support Team
2023 年 6 月 6 日
Unfortunately, there isn't a way to ignore the model callbacks when building a model as of Simulink version R2023a. To work around this issue you can create a MATLAB script that 'strips' or comments out the callbacks.
For example, below is an example to strip the 'InitFcn' of a model (saved in 'mdl') and then put it back:
>> origCB = get_param(mdl,’InitFcn’);
>> set_param(mdl,’InitFcn’,’’); %Disable initFcn
>> % Do something here
>> set_param(mdl,’InitFcn’,origCB) %Enable initFcn
If you have many callbacks, you can find them using the 'Callback Tracer'. You can also find the slowest callbacks and only disable those. Please refer to the following documentation page for more information on the 'Callback Tracer'
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Simulink Environment Customization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!