S-functionの入出力にバスの配列を設定する方法
20 views (last 30 days)
Show older comments
S-functionの入出力にバスの配列を設定する方法、もしくはサンプルコードなどを教えてください。 S-function builderではバス配列に対応していないので、S-functionで記述したいです。
1 Comment
Birdman
on 23 Oct 2017
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.
Answers (1)
Akihiro Yasuda
on 24 Oct 2017
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])';
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!