How can I tell EmbeddedCo​der/Simuli​nkCoder to not evaluate expressions containing Matlab tunable parameters when generating C-code from Simulink?

Hi, I have a saturation block in Simulink where I set upper and lower limits based on a tunable parameter and have the output port generated as global variable:
In the generated C-code the lower limit expression is evaluated to:
srt_gyroXsaturated = rtU.gyro_X >= srt_gyroLimitX ? srt_gyroLimitX :
rtU.gyro_X <= -0.349040151F ? -0.349040151F : rtU.gyro_X;
What I want is that '-srt_gyroLimitX' is not evaluated to '-0.349....' but left "as is" in the generated code. How can I achive that?

回答 (2 件)

Saurabh Gupta
Saurabh Gupta 2017 年 8 月 2 日
For tunability in code generation, the parameter needs to be a variable. Parameters specified as expressions are evaluated and inlined. You could specify the limits as 2 separate variables to ensure that code generation preserves the tunability.

1 件のコメント

Matphree
Matphree 2017 年 10 月 10 日
Yeah, that what I did, but I prefer to have one +/-limit, is that possible?

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

Ben Rancici
Ben Rancici 2019 年 9 月 30 日
Same question as Matphree: how to prevent block parameter evaluation in the generated code?
I don't understad Saurabh Gupta's solution.

カテゴリ

ヘルプ センター および File ExchangeSimulink Coder についてさらに検索

質問済み:

2017 年 6 月 9 日

回答済み:

2019 年 9 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by