C/C++ code generation is the core functionality of MATLAB®
Coder™. Generate code from the app, which you can open with coder
, or from the command line, by
using the codegen
function. The app provides
step-by-step guidance through the code generation process, including guidance around
best practices, and clear visual aids for the many code generation settings and
options. The command line workflow enables simple, repeatable, and efficient
initiation of code generation. The code generation workflow supports many different
data types, including variable-size data and global data. The workflow also supports
multiple entry-point (top-level) functions, multisignature MEX function generation,
and customization of fundamental properties such as the array layout and array
indexing of the generated code. In addition, you can generate code that uses key C++
language features such as classes, namespaces, and function overloading.
Generate C/C++ code from MATLAB code.
Generate C Code by Using the MATLAB Coder App
Generate C/C++ code from MATLAB code by using the MATLAB Coder app.
Generate C Code at the Command Line
Generate C/C++ code from MATLAB code by using the codegen
command.
Understand code generation considerations specific to C++.
Set up a project in the MATLAB Coder app.
Convert codegen Command to Equivalent MATLAB Coder Project
Use the codegen
command with the -toproject
option.
Convert MATLAB Coder Project to MATLAB Script
Generate code at the command line by using project settings.
Share Build Configuration Settings
Export project settings to a code generation configuration object or import the settings into a project.
Generate Code for Variable-Size Data
Generate code for data whose size might change at run time.
Generate C/C++ code from MATLAB code that uses global data
Generate Code for Enumerations
Generate code from MATLAB code that uses enumerations.
Generate Code for Multiple Entry-Point Functions
Generate C/C++ code for multiple entry-point functions.
Generate One MEX Function That Supports Multiple Signatures
Generate a single MEX function for multiple signatures.
Pass an Entry-Point Function Output as an Input
Simplify input type specification for multiple entry-point functions.
Generate Code That Uses Row-Major Array Layout
Generate C/C++ code with row elements stored contiguously in memory.
Generate Code That Uses N-Dimensional Indexing
Preserve array dimensions in generated code.
Generate C++ Code with Class Interface
Generate C++ code that is packaged into a class.
Generate C++ Classes for MATLAB Classes
Generate a C++ class for a value class, handle class, or System object™ in your MATLAB code.
Use Dynamically Allocated C++ Arrays in the Generated Function Interfaces
Understand and use dynamically allocated arrays from the generated C++ function interfaces.
Organize Generated C++ Code into Namespaces
Namespaces organize the generated code into logical parts and prevent name collisions.
Certain words in your code, that are C/C++ keywords, might be renamed in the generated code.