Rename Signals in Simulink with MATLAB

25 ビュー (過去 30 日間)
Carsten
Carsten 2011 年 10 月 26 日
移動済み: DGM 2023 年 7 月 4 日
Hello,
is it possible to trigger the command in Simulink "double left click on line -> rename line" from MATLAB?
The command
set_param(OBJ,'OutputSignalNames','test')
isn't possible, because the parameter is read only (btw. i do not understand why). I'm not able to change the name of the line directly (e.g. with setname, handles...)
To avoid problems during run or compilation time i used the "PreSaveFct" to call the m-file.
I could open the mdl-file as a text file and change the names directly. But this isn't convenient.
thanks for the help!
Carsten
  1 件のコメント
Carsten
Carsten 2011 年 11 月 2 日
i can't believe that this isn't supported! :(

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

回答 (1 件)

Fangjun Jiang
Fangjun Jiang 2011 年 11 月 2 日
It can be done. You just need to get the handle of the signal line.
There are many ways to get the handle of the signal line. In this example, assume the block has one outport.
PortHandles=get_param(gcb,'PortHandles');
set_param(PortHandles.Outport(1),'Name','NewSignal');
  1 件のコメント
pangpang jz
pangpang jz 2023 年 7 月 4 日
移動済み: DGM 2023 年 7 月 4 日
Nice

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

カテゴリ

Help Center および File ExchangePrepare Model Inputs and Outputs についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by