Datos de tamaño variable
Los datos de tamaño variable son aquellos cuyo tamaño no se conoce en tiempo de compilación o cambia en tiempo de ejecución. Para utilizar datos de tamaño variable en el código de MATLAB® para el que desea generar código C/C++, siga las pautas descritas. Se aplican ciertas restricciones al uso de datos de tamaño variable en el código de MATLAB destinado a la generación de código. Estas técnicas pueden ayudar a controlar la asignación dinámica de memoria y mejorar el rendimiento del código generado.
Funciones
coder.areUnboundedVariableSizedArraysSupported | Check if current configuration settings allow unbounded variable-size arrays (Desde R2024a) |
coder.varsize | Resolve size incompatibility errors and declare upper bounds |
Temas
- Generate Code for Variable-Size Arrays
Learn how the code generator defines and handles fixed- and variable-size data.
- Define Variable-Size Data for Code Generation
Choose a method for defining variable-size data.
- Control Memory Allocation for Variable-Size Arrays
Control when dynamic memory allocation is used.
- Control Dynamic Memory Allocation for Fixed-Size Arrays
Control when to dynamically allocate memory for fixed-size arrays.
- Specify Upper Bounds for Variable-Size Arrays
To avoid dynamic memory allocation, specify upper bounds for variable-size arrays.
- Use Dynamically Allocated C Arrays in the Generated Function Interfaces
Understand and use dynamically allocated arrays from the generated C function interfaces.
- Incompatibilities with MATLAB in Variable-Size Support for Code Generation
Understand how the behavior of the generated code can differ from MATLAB as a result of variable-size data.
- Incompatibility with MATLAB for Default Dimension Selection
Solución de problemas
Resolve Error: Fixed Size on the Left Side but Variable Size on the Right
Troubleshoot errors when assigning variable-size arrays to fixed-size arrays.
Resolve Error: coder.varsize Not Supported for Strings
Troubleshoot code generation error when using coder.varsize
with string variables.