Clear Filters
Clear Filters

Alternatives to 'For Each subsystem' that are compatible with global data outside the subsystem

9 views (last 30 days)
Hello all,
For a project, I am making use of the For Each subsystem in my Simulink model. I have a set of values for one of the input variables of the block and the goal is to have Simulink generate a set of outputs for each input value. The number of input and output will be different with configurations "N". The For Each subsystem works great for this purpose, but unfortunately the Coder cannot convert it to C code. How could I make use an N as exportgloabl with For Each subsystem?

Answers (1)

Fangjun Jiang
Fangjun Jiang on 9 Jul 2024 at 18:51
The number of input and output will be different with configurations "N"
In that case, the value of "N" is determined by the partition and the size of the input. It is not something that is pre-set by the user.
I would do it reversely. Define a Simulink.Parameter "M" that is exported global or #define, then construct your input and the partition accordingly to reslut in the value of "N". Hopefully you will be able to generate C code with "M" as a parameter, which is equivalant as "N" being a parameter.
FYI, For Each Subsystem does not support variable-size signals.
  1 Comment
Jie
Jie on 9 Jul 2024 at 19:00
I tried this method to define the input and output with "N" as exported global, but it showing it is not supported for for each function.

Sign in to comment.

Products


Release

R2023a

Community Treasure Hunt

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

Start Hunting!