Definición de función
R2024bExisten consideraciones especiales cuando se crean funciones de MATLAB® cuyo uso está destinado a la generación de código. Estas incluyen determinadas restricciones al utilizar varargin y varargout, funciones recursivas, funciones anónimas y funciones anidadas. Para generar código para las funciones recursivas de MATLAB, el generador de código utiliza recursividad en tiempo de compilación o recursividad en tiempo de ejecución. Para producir código C/C++ eficiente, el generador de código puede crear múltiples versiones de una función, denominadas especializaciones de la función. En algunos casos, puede evitar que el generador de código cree especializaciones de la función mediante coder.ignoreSize y coder.ignoreConst. Cuando se genera una función MEX, se puede omitir la generación de código para una función específica del código de MATLAB y utilizar el motor de MATLAB para ejecutar una llamada. Para ello, utilice la construcción coder.extrinsic.
Funciones
coder.extrinsic | Declare extrinsic function |
coder.ignoreConst | Prevent use of constant value of expression for function specializations |
coder.ignoreSize | Prevent code generator from creating function specializations for constant-size expressions |
coder.mustBeComplex | Validate that value lies on the complex plane (Desde R2023b) |
coder.mustBeConst | Validate that value is a compile-time constant (Desde R2023b) |
coder.noImplicitExpansionInFunction | Disable implicit expansion within the specified function in the generated code |
coder.sameSizeBinaryOp | Apply element-wise binary operations without implicit expansion |
coder.specifyAsGPU | Specify that value is a GPU input to an entry-point function for GPU code generation (Desde R2023b) |
Temas
- Effects of Implicit Expansion on Generated Code
Implicit expansion in the generated code can affect output sizes, code size, and performance.
- Control Implicit Expansion in Generated Code
Disable implicit expansion globally, for specific functions, or for specific operations.
- Generate Code for arguments Block That Validates Input and Output Arguments
Generate code for MATLAB code that constrains class, size, and other aspects of function input and output values.
- Code Generation for Recursive Functions
Use recursive functions in MATLAB code that is intended for code generation.
- Anonymous Function Limitations
- Nested Function Limitations
- Using Extrinsic Functions
Use MATLAB to execute a function call in the generated code.
Solución de problemas
Resolve Error: Nonconstant Index into varargin or varargout
Troubleshoot error when the code generator cannot determine the value of an index
into varargin or varargout inside a
for-loop.
Troubleshoot Replicated Functions in Generated Code
Troubleshoot duplicate functions in the generated code.
Resolve Error: Output Variable Must Be Assigned Before Run-Time Recursive Call
Troubleshoot error when the MATLAB code does not assign a value to an output variable before a recursive call.
Resolve Error: Compile-Time Recursion Limit Reached
Troubleshoot error when recursion during code generation exceeds the limit.
Resolución del error: Discrepancias de tamaño
Solucione errores de discrepancia de tamaño que ocurran durante la generación de código.
Resolve Issue: coder.inline("never") and coder.nonInlineCall Do Not Prevent Function Inlining
Troubleshoot instances of coder.inline('never') not
preventing inlining.
Resolve Error: Variables Must Be Fully Defined Before Use
Troubleshoot code generation error when variables are not defined before use.