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

2 次查看(过去 30 天)
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.

采纳的回答

Jon
Jon 2022-6-20
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','|+-')

更多回答(0 个)

类别

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

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by