フィルターのクリア

what is the script for highlight to source of a line when i know handle of a line.

6 ビュー (過去 30 日間)
what is the script for highlight to source of a line when i know handle of a line
  1 件のコメント
Jan
Jan 2013 年 6 月 24 日
I do not understand the question. What is "highlight to the source"?

サインインしてコメントする。

採用された回答

Sreeram Mohan
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 件のコメント
omar Elkawokgy
omar Elkawokgy 2018 年 1 月 11 日
Thanks a lot I have been searching for this for a long time :)
Laurey ZOBIKILA
Laurey ZOBIKILA 2018 年 8 月 22 日
What is the line command to find the source block?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSimulink Functions についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by