How to determine sign properties (++, +-, --) of sum block using matlab coding

1 view (last 30 days)
I have two sum blocks, one with sign (++) and other with (+-). Will help of matlab coding, how will I be able to extract these properties. Appreciate all the help.

Accepted Answer

Jon
Jon on 20 Jun 2022
Suppose your Simulink model is called myModel, and the sum blocks are named Sum1 and Sum2.
You can get the signs, for example for Sum1 using:
signs = get_param('myModel/Sum1','Inputs');
You can set the signs using
set_param('myModel/Sum1','Inputs','|+-')

More Answers (0)

Categories

Find more on Simulink Functions in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!