필터 지우기
필터 지우기

in Simulink, add line from line_node to block with command?

조회 수: 6 (최근 30일)
Leo Zhai
Leo Zhai 2020년 5월 7일
댓글: Leo Zhai 2020년 5월 9일
In Simulink, I want to add 'B4' and connect to 'A' with command, I want it to look like bellow:
I tried the code of add_line(gcs, 'A/1', 'B4/1', 'autorouting', 'on'). but it looks like bellow:
Then my new idea is add_line from 'P1_position' to 'B4'. while I do not know how to get the 'P1_position' or 'Line3_length'(to calcute P1_position).
Thanks to all viewing/answering my question!

채택된 답변

Fangjun Jiang
Fangjun Jiang 2020년 5월 7일
If you know that the connection can be started from block B3, then you can get the line handles of B3, then get the line handle of Line 3, then get the 'Points' of Line 3.
I've been able to add the line directly from P1 to block B4 inport (get its position first), but 'autorouting' is not available when using add_line with points. You need to generate the way point based on the coordinates of point P1 and B4 inport point. I think it can be done.
  댓글 수: 3
Fangjun Jiang
Fangjun Jiang 2020년 5월 8일
편집: Fangjun Jiang 2020년 5월 8일
  1. Your task is to connect from A to B4 and make the line pretty. In program, you have to decide where to start this new line. From P1 or the junction points above it (the intersection point of the vertical line with horizontal input line of B2 or B1). If you know it is P1 which actually means the block B3 is known, then it makes this task a little easier.
  2. Use this code. You will get the position of P1 from the points of B3 input line
lh=get_param([gcs,'/B3'],'LineHandles');
lh_inport=lh.Inport;
get_param(lh_inport,'Points')
Leo Zhai
Leo Zhai 2020년 5월 9일
Thank you very much, the bellow is exactly what I wanted.
get_param(lh_inport,'Points')
(I had tried get_param(lh_inport, 'ObjectParameters') to search 'line_length' parameters but got none...)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Simulink Functions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by