Azzera filtri
Azzera filtri

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

3 visualizzazioni (ultimi 30 giorni)
tnksral
tnksral il 23 Ott 2017
Risposto: Akihiro Yasuda il 24 Ott 2017
S-functionの入出力にバスの配列を設定する方法、もしくはサンプルコードなどを教えてください。 S-function builderではバス配列に対応していないので、S-functionで記述したいです。
  1 Commento
Birdman
Birdman il 23 Ott 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.

Accedi per commentare.

Risposte (1)

Akihiro Yasuda
Akihiro Yasuda il 24 Ott 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])';

Categorie

Scopri di più su Simulink in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!