Simulink align ports keyboard shortcut

조회 수: 20 (최근 30일)
ricard molins
ricard molins 2019년 1월 17일
답변: Mingli ZHU 2021년 1월 19일
I work on simulink for long periods of time. Having to "select some models" and then "right click / Arrange / Match Size " + "right click / Arrange / Align Left " + "right click / Arrange / Distribute Verticaly" is a time consuming task that should be automatizable.
I am already now how to add custom menus with custom functions which are binded to a keyboard shortcut that launches some scripts.
Is there any programatical way to "right click / Arrange / Align Left " without having to go block by block to read the properties an so on and compute the position (a way to launch matlab build it "Align Left" function ?

답변 (2개)

Sandeep Disale
Sandeep Disale 2019년 1월 23일
Hi Ricard,
Maybe this can help,
Thanks
  댓글 수: 1
ricard molins
ricard molins 2019년 1월 28일
Even though this answer is usefull this is not exactly what I am looking for. My objective is to avoid having to handle inports\outports of blocks and work more based on a selection of items and align them.

댓글을 달려면 로그인하십시오.


Mingli ZHU
Mingli ZHU 2021년 1월 19일
Hello,
%find current selected blocks
blocks=find_system(gcs,'selected','on');
L=length(blocks);
% create 3 arrays: blcoks top position/found numbers/new positions
top=zeros(L,1);
num=zeros(L,1);
pos=zeros(L,1);
for i=1:L
position=get_param(blocks{i},'Position');
top(i)=position(2);
num(i)=i;
end
new_top=sort(top);%sort top ascendantly
min=new_top(1);
max=new_top(L);
distance=(max-min)/(L-1);%calculate interval
for i=1:L
pos(i)= find(top(i)==new_top);%find block's new order
position=get_param(blocks{i},'Position');
position=position+[0 min+(pos(i)-1)*distance-position(2) 0 min+(pos(i)-1)*distance-position(2)];
set_param(blocks{i},'Position',position);% re placer
end

카테고리

Help CenterFile Exchange에서 Interactive Model Editing에 대해 자세히 알아보기

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by