How to generate a Simulink S-Function programmatically?

28 ビュー (過去 30 日間)
Alexander Gebel
Alexander Gebel 2017 年 7 月 17 日
コメント済み: Moritz Burghardt 2021 年 9 月 23 日
Hello, i have different Simulink models with lots of Subsystems in there. Some of these Subsystems must be generated as s-function. I was thinking about writing a script to generate the s-functions, but i don't found a function building s-functions programmatically. Is there any way?

採用された回答

Saurabh Gupta
Saurabh Gupta 2017 年 7 月 19 日
You should be able to use a combination of instructions in the following two documentation sections to write a script that generates S-functions for you.
The high level idea is to
  1. set the System Target as 'rtwsfcn.tlc',
  2. make sure "Create new model" is selected, and
  3. use the subsystem handle to call the 'rtwbuild' function like
>> new_block = rtwbuild(subsystem_handle)
The 'rtwbuild' function will return the handle to the newly created S-function block, which you should be able to use to perform the intended operations on the new block (like replacing the sub-system with it or saving the block in a new model).
  2 件のコメント
Gordon
Gordon 2017 年 8 月 24 日
If the subsystem is connected to a bus-signal, this method won't work:
"The input to the Bus Selector block must be a virtual or nonvirtual bus signal.A possible cause of this error is the use of a bus-capable block"
When manually clicking "Build selected Subsystem" Simulink automatically creates two subsystems left and right to the s-function. Is there any way to programmatically (via script) trigger this process?
Thanks very much in advance!
Moritz Burghardt
Moritz Burghardt 2021 年 9 月 23 日
You need to deselect the option "Generate Code only". You can do it programatically:
set_param(cs,'GenCodeOnly',0); % Deselect "Generate code only"

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBlock and Blockset Authoring についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by