Main Content

Function Definition

R2026b
Defining and calling functions for code generation

There are special considerations when you create MATLAB® functions that are intended for code generation. These include certain restrictions when you use varargin and varargout, recursive functions, anonymous functions, and nested functions. To generate code for MATLAB recursive functions, the code generator uses either compile-time recursion or run-time recursion. To produce efficient C/C++ code, the code generator sometimes creates multiple versions of a function, referred to as function specializations. In certain cases, you can prevent the code generator from creating function specializations by using coder.ignoreSize and coder.ignoreConst. While generating a MEX function, you can bypass code generation for a specific function in your MATLAB code and instead use the MATLAB engine to execute the call. To do this, use the coder.extrinsic construct.

Functions

%#codegenPragma that Indicates a MATLAB function is intended for code generation
coder.extrinsicDeclare extrinsic function
coder.ignoreConstPrevent use of constant value of expression for function specializations
coder.ignoreSizePrevent code generator from creating function specializations for constant-size expressions
coder.mustBeComplexValidate that value lies on the complex plane (Since R2023b)
coder.mustBeConstValidate that value is a compile-time constant (Since R2023b)
coder.noImplicitExpansionInFunctionDisable implicit expansion within the specified function in the generated code
coder.sameSizeBinaryOpApply element-wise binary operations without implicit expansion
coder.specifyAsGPUSpecify that value is a GPU input to an entry-point function for GPU code generation (Since R2023b)

Topics

Implicit Expansion

Extrinsic Functions

Function Argument Validation

Recursive, Anonymous, and Nested Functions

Troubleshooting

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.

Resolve Error: Arrays Have Incompatible Sizes

Troubleshoot size incompatibility errors that occur during code generation.

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.

Resolve Error: Cannot Determine the Exact Number of Iterations for a Loop

Troubleshoot error when code generator is unable to determine the number of iterations in a loop.