[Fix Inport position][Simulink Model]
1 次查看(过去 30 天)
显示 更早的评论
Hello EveryOne,
I have a problem, please spend on your time to help me.
In matlab simulink, I would like to fix the Inport's position,
Even when I add or remove a Inport block, the previous others Inport's position are not changed.
Thank you in advance.
0 个评论
回答(1 个)
Nikhil Kori
2020-7-9
编辑:Nikhil Kori
2020-7-9
Hi,
To change the position of inport block you are supposed to use get_param and set_param.
block_size = get_param('model_name/block_name','Position');
X = block_size(1,1);
Y = block_size(1,2);
X + Width = size_blk(1,3);
Y + Height = size_blk(1,4);
set_param('model_name/block_name','Position',[X Y X+Width Y+Height]);
for example :-
set_param('vdp/Fcn','Position',[50 100 110 120])
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Programmatic Model Editing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!