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

조회 수: 3 (최근 30일)
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?

답변 (1개)

Fangjun Jiang
Fangjun Jiang 2024년 7월 9일
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
Jie
Jie 2024년 7월 9일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Simulink Coder에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by