Main Content

Algorithm Design Basics

Algorithm design considerations for code generation, behavior of generated code

Functions

coder.allowpcodeControl code generation from P-code files
coder.cevalCall external C/C++ function
coder.cincludeInclude header file in generated code
coder.cstructnameName C structure type in generated code
coder.extrinsicDeclare function as extrinsic and execute it in MATLAB
coder.inlineControl inlining of a specific function in generated code
coder.loadLoad compile-time constants from MAT-file or ASCII file
coder.nullcopyDeclare uninitialized variables in code generation
coder.opaqueDeclare variable in generated code
coder.refIndicate data to pass by reference
coder.screenerDetermine if function is suitable for code generation
coder.rrefIndicate read-only data to pass by reference
coder.targetDetermine if code generation target is specified target
coder.unrollUnroll for-loop by making a copy of the loop body for each loop iteration
coder.varsizeDeclare variable-size data
coder.wrefIndicate write-only data to pass by reference
coder.updateBuildInfoUpdate build information object RTW.BuildInfo

Classes

coder.ExternalDependencyInterface to external code
coder.BuildConfigBuild context during code generation

Examples and How To

Concepts

Troubleshooting

Unknown Output Type for coder.ceval

Define the output type for external C/C++ function calls.