Simulink Mask won't display parameter values

3 Ansichten (letzte 30 Tage)
N/A
N/A am 19 Jul. 2024
Beantwortet: Fangjun Jiang am 19 Jul. 2024
I want my masked subsystem to display two parameter values, but for some reason it is only displaying the variable name. I am not sure what the problem is. Photos are attached.

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 19 Jul. 2024
  1. Variable 'label' is inside the function. It is not visible in the mask workspace.
  2. disp(label), not disp('label')
  3. Use the following code for "Icon"
Kp=get_param(gcb,"Kp");
Ki=get_param(gcb,"Ki");
str1="Kp="+Kp;
str2="Ki="+Ki;
label=[str1;str2];
disp(label)

Weitere Antworten (0)

Kategorien

Mehr zu Subsystems finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by