Clear Filters
Clear Filters

Why array of structures is not supported in simulink function argument data type definition?

3 views (last 30 days)
  • When I created a array of structure included ARXML and import to Matlab, then the error comes our like below: The argument 'xxx' of operation 'AAA' has data type 'IDT_Array_xxxx' which is an array of a record type. This data type is not supported.
  • To specify the array of structure data type, it's a array consistents several structure as its base data type element.
  • And after I check the help document of 'Simulink function', there is not array included in data type shown as below:
  • So I am wondering why the array of structure is support in sender/receiver port, but not support in client/server port which is implemented as simulink function?

Answers (1)

Ayush
Ayush on 2 Jan 2024
The reason why the array of structure is support in sender/receiver port, but not support in client/server port which is implemented as simulink function is:
  • When using client/server ports with Simulink functions, the data types for the inputs and outputs must be compatible with the code generation requirements of Simulink. Simulink functions are designed with the intention of being able to generate standalone C code that can be deployed on embedded systems. Arrays of structures are not supported as inputs or outputs for Simulink functions because the C code generated from such constructs would be complex and potentially non-portable.
  • The underlying reason for this limitation is that the memory layout and handling of arrays of structures can be quite complex, especially when considering dynamic memory allocation, memory alignment, and other low-level details that are crucial for embedded systems programming.
Thanks,
Ayush

Categories

Find more on Simulink in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!