Toggle manual switch through m-file script

38 views (last 30 days)
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?

Accepted Answer

Kaustubha Govind
Kaustubha Govind on 24 Apr 2012
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 Comments
Chetan Sharma
Chetan Sharma on 23 Aug 2018
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
Edited: Sergio Enrique Pinto Castillo on 20 May 2022
How did you change the position of the toggle swicth using the value of output in a simulink block?

Sign in to comment.

More Answers (0)

Categories

Find more on Simulink Functions 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!