이 페이지는 기계 번역을 사용하여 번역되었습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.
가변 크기 데이터
MATLAB Function 블록과 MATLAB System 블록에 변수를 가변 크기로 지정할 수 있습니다. 가변 크기는 컴파일할 때 데이터 크기를 알 수 없거나 런타임에 데이터 크기가 변하는 데이터입니다.
블록
MATLAB Function | Include MATLAB code in Simulink models |
MATLAB System | Include System object in model |
함수
coder.areUnboundedVariableSizedArraysSupported | Check if current configuration settings allow unbounded variable-size arrays (R2024a 이후) |
coder.varsize | Resolve size mismatch errors and declare upper bounds |
도움말 항목
- 가변 크기 배열에 대한 코드 생성
가변 크기 데이터는 컴파일할 때 데이터 크기를 알 수 없거나 런타임에 데이터 크기가 변할 수 있는 데이터입니다.
- 가변 크기의 MATLAB Function 블록 변수 선언하기
시뮬레이션 도중 MATLAB Function 블록에 정의된 변수의 크기 변경을 허용합니다.
- Unbounded Variable-Size Signals
Model unknown size data using dynamic arrays.
- Define Variable-Size Data for Code Generation
Choose a method for defining variable-size data.
- Use Dynamic Memory Allocation for Variable-Size Arrays in a MATLAB Function Block
Generate C/C++ code that uses dynamic memory allocation.
- Control Memory Allocation for Variable-Size Arrays in a MATLAB Function Block
Disable dynamic memory allocation or specify a dynamic memory allocation threshold for MATLAB Function blocks.
- Specify Upper Bounds for Variable-Size Arrays
To avoid dynamic memory allocation, specify upper bounds for a variable-size array.
- Incompatibilities with MATLAB in Variable-Size Support for Code Generation
Sometimes, the results for variable-size data in generated code are different than the results in MATLAB®.
- Variable-Sizing Restrictions for Code Generation of Toolbox Functions
Some restrictions for variable-size data apply to multiple toolbox functions.
문제 해결
Diagnose and Fix Variable-Size Data Errors
Troubleshoot size mismatch and upper bounds detection errors.