How do I get a pointer to a structure for in/out parameters

1 回表示 (過去 30 日間)
Cédric Pariset
Cédric Pariset 2022 年 4 月 19 日
編集済み: Mark McBroom 2022 年 4 月 26 日
Hello,
I don't know how I can go from this simple calculation function:
to a C prototype that is more like Calculation(struct_in *pt_in, struct_out *pt_out) rather than Calculation(real_T input, real_T input1, real_t input2, real_T input3, real_T output) ?
Is there any way to have this automatically? Or do I need to create a specific bus/structure?
Thanks,
Best regards

採用された回答

Mark McBroom
Mark McBroom 2022 年 4 月 26 日
編集済み: Mark McBroom 2022 年 4 月 26 日
A non-virtual bus can be used to hold the input signals and a second non-virtual bus for the output signals. This will result in a C structure in the generated code. You can then use the code mappings editor to specify pass-by reference for the input bus/struct. This should result in your desired function prototype.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSimulink Coder についてさらに検索

タグ

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by