Simulinkペー​シングのOn/Off​をmファイルで行いた​い

3 views (last 30 days)
Kento SHIRAKATA
Kento SHIRAKATA on 19 Dec 2019
Answered: Toshinobu Shintai on 20 Dec 2019
タイトル通りです.
現在,mファイルから
sim('hoge')
といった形でシムリンクでシミュレーションをしています.
そこで,ペーシングのOn/Offをmファイルで設定したいのです.
sim('hoge','pacing','Off');
のような形でできればよいのですが,なにか方法はありませんでしょうか?

Accepted Answer

Toshinobu Shintai
Toshinobu Shintai on 20 Dec 2019
以下のコマンドでシミュレーションペーシングのOn/Offを切り替えることができます。
set_param(modelName, 'EnablePacing', 'on')
set_param(modelName, 'EnablePacing', 'off')
modelNameはモデルファイルの名前です。

More Answers (0)

Categories

Find more on モデル化 in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!