How do i pause simulink for a moment ?
1 回表示 (過去 30 日間)
古いコメントを表示
I trying to create a continuous plotting Application Programming Interface (aka API)which keep collecting results from the stimulation produce by simulink. The problem is simulink only produce the result after it stop or pause, any idea of pausing it?
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 1 月 23 日
set_param('yourmodel','simulationcommand','pause')
see also, 'continue','stop','update',...
7 件のコメント
TAB
2013 年 1 月 29 日
Simulink APIs works only under matlab environment. It is not possible to coontrol compiled model with these APIs. Also same is true for vice versa. Simulink APIs are not supported by matlab compiler. So they will not work with you standalone GUI.
その他の回答 (1 件)
TAB
2013 年 1 月 25 日
Instead of puasing the simulation to collect data, use run time data access methods of simulink. Using these methods data can be collected when the simulation is running.
See
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Configure and View Diagnostics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!