Subsystem can not reference partitioned mask parameter
조회 수: 4 (최근 30일)
이전 댓글 표시
I am trying to partition mask parameters for each subsystem block, however keep getting the following error while developing the C code:
Parameter 'a1' of block 'blankSystry/inputtry/Subsystem' cannot reference partitioned mask parameter 'i' of For Each subsystem 'blankSystry/inputtry' because parameter 'a1' will be reduced to a numerical value.
Caused by:
- The generated code will inline the numeric value of the expression 'a(i,1)' (used in parameter 'a1' of 'blankSystry/inputtry/Subsystem') because the expression is either referencing an element of a variable which is a mask parameter or has two or more dimensions, or is referencing an element of a one-dimensional variable using multiple indices. This expression resolves to tunable variables (i).
댓글 수: 2
채택된 답변
Pramil
2024년 9월 13일
Hi Devyani,
I encountered a similar error with MATLAB R2022b. To resolve it, I changed the "Mask Parameter" property, “tunable” from “on” to “off”, which successfully generate code.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1771600/image.png)
Currently I am using MATLAB R2023a and this issue does not occur in it, so you can upgrade your MATLAB version as well to resolve the same.
For your reference, I have attached a model.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Subsystems에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!