S-function​の入出力にバスの配列​を設定する方法

6 次查看(过去 30 天)
tnksral
tnksral 2017-10-23
S-functionの入出力にバスの配列を設定する方法、もしくはサンプルコードなどを教えてください。 S-function builderではバス配列に対応していないので、S-functionで記述したいです。
  1 个评论
Birdman
Birdman 2017-10-23
English translation:
Please tell me how to set the array of buses for S-function input / output, sample code, etc. Since S-function builder does not correspond to bus arrangement, I would like to describe it with S-function.

请先登录,再进行评论。

回答(1 个)

Akihiro Yasuda
Akihiro Yasuda 2017-10-24
legacy_code関数を利用頂ければ、バス配列(構造体配列)を入出力引数としたS-Functionが生成できます。 構造体引数を使用した例は下記コマンドを実行頂ければ確認できます。
構造体引数をもつレガシ関数によるバスの使用
web(fullfile(docroot, 'simulink/examples/using-buses-with-legacy-functions-having-structure-arguments.html'))
上記資料にあるOutputFcnSpec を下記のように変更頂ければバス配列となります。
def.OutputFcnSpec = 'void counterbusFcn(COUNTERBUS u1[2], int32 u2, COUNTERBUS y1[2], int32 y2[2])';

类别

Help CenterFile Exchange 中查找有关 Simulink 的更多信息

Community Treasure Hunt

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

Start Hunting!