Simulink mask display programmatically, how to make line shift?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Flemming
am 19 Sep. 2018
Beantwortet: Flemming
am 20 Sep. 2018
I use this command to set up mask display programmatically:
set_param( gcbh,'MaskDisplay', ['port_label(''input'', 1, ''in1''); port_label(''output'', 1, ''out1'');'] );
In the mask editor it afterwards appears in one line as:
port_label('input', 1, 'in1'); port_label('output', 1, 'out1');
which is a bit annoying when the block has many ports.
How can I make it appear in multiple lines, like:
port_label('input', 1, 'in1')
port_label('output', 1, 'out1')
0 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 19 Sep. 2018
use char(10),
set_param( gcbh,'MaskDisplay', ['port_label(''input'', 1, ''in1'');',char(10),'port_label(''output'', 1, ''out1'');'] );
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Author Block Masks finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!