Declare C Array in C Function dependent on constant

36 次查看(过去 30 天)
Dear Matlab-Team,
I would like to include some custom C code into my Simulink model using the C Caller / C function block. As I need some intermediate variables, I would like to declare a C array dependent on the size of the input "LEN", which is constant.
float data[LEN];
As C only allows direct values or macros, I cannot use the constant in the ports and parameters section. I would like to avoid to pre allocated temporarily needed arrays in Simulink and then feed as reference to my function. Also I need to avoid dynamic memory allocation like malloc.
Is there any option to declare a macro for example that can be then used in the C function?
Thanks for your support!

回答(2 个)

aditi bagora
aditi bagora 2024-11-20,11:33
Hi Simon,
I understand that you want to define a macro to specify the array length for use in the 'C Function' block. Simulink offers a convenient way to achieve this through the 'Defines' section in the configuration panel. Please refer to the steps below to implement this approach:
  1. Navigate to Model Configuration Parameters and select Simulation Target.
  2. In the Custom Code section, find the Defines option.
  3. Define your macro here, for instance: LEN=100.
  4. Once you have applied these configuration settings, you can easily use the macro within your 'C Function' block.
Please refer to the following MathWorks documentation for more details on defining macros : https://www.mathworks.com/help/simulink/gui/defines.html
Hope this helps!
  2 个评论
Simon Hafner
Simon Hafner about 22 hours 前
Hi,
Thanks for your answer! Is it possible to make the LEN = 100 dependent on a constant, which can be changed programmatically?
aditi bagora
aditi bagora about 9 hours 前
Hi Simon,
I see that you want the LEN to change programmatically, macros are usually used to define constants. If you want the value to change programmatically then maybe you should use a variable but that cannot be used in your case as you eventually need it for array declaration in C.

请先登录,再进行评论。


TED MOSBY
TED MOSBY about 4 hours 前
You must load ‘LEN’ in the base workspace first, otherwise it will throw error. You can do this by simply writing LEN=5 in the MATLAB command window.
You can then follow the steps as shown below. I used an example code. You can define a macro in the ‘defines’ section as shown below:
Below is the example model I used to check if this was working :
Don’t forget to add the ports and parameters in the block parameters section like this:
Let me know if this solves your query or not!

类别

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

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by