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

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

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre モデル化 en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!