Toggle manual switch through m-file script

21 次查看(过去 30 天)
I want to toggle the manual switch block in Simulink using an m-file script.
....my model file is called "ecg_filter" and the manual switch is called "sw1", so I wrote in the m-file: set_param('ecg_filter/sw1','varsize','off') but the switch did not change positions, what am I doing wrong?

采纳的回答

Kaustubha Govind
Kaustubha Govind 2012-4-24
The parameter is called 'sw', not 'varsize'. You need to use:
>> set_param('ecg_filter/sw1', 'sw', '0')
>> set_param('ecg_filter/sw1', 'sw', '1')
  4 个评论
Chetan Sharma
Chetan Sharma 2018-8-23
Hi people. How did you find that the parameter is called 'sw'? I am trying to use same kind of parameter in manual variant sink block but unable to find a parameter for the same. Thank you. :)
Sergio Enrique Pinto Castillo
编辑:Sergio Enrique Pinto Castillo 2022-5-20
How did you change the position of the toggle swicth using the value of output in a simulink block?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Modeling 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by