How can I programatically change the size and position of a user-defined mask in simulink?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can I programatically change the size and position of a user-defined mask in simulink?
0 Kommentare
Antworten (1)
Ashutosh Prasad
am 15 Jan. 2019
You can use set_param to set the 'Position' parameter of the mask.
>> set_param(gcb, 'Position', [180, 30, 290, 230])
Follow this answer here for more details
https://www.mathworks.com/matlabcentral/answers/218042-changing-the-size-and-position-of-the-simulink-block
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!