what is the script for highlight to source of a line when i know handle of a line.
조회 수: 3 (최근 30일)
이전 댓글 표시
what is the script for highlight to source of a line when i know handle of a line
댓글 수: 1
채택된 답변
Sreeram Mohan
2013년 6월 25일
model = 'your_model_name'; open_system(model);
%Select the line whose source has to be traced port = get_param([model '/Out1'], 'PortHandles'); % in this case out1 is an %output block in a model lineS = get_param(port.Inport, 'Line'); set_param(lineS, 'Selected', 'on');
%Highlight to source get_param(lineS, 'TraceSourceOutputports');
%If you need to find the source block. may be use find_system to find the colors or any other property to get to the block name.
%hope this helps. %% sreeram
댓글 수: 3
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!