You can generate code for MATLAB classes, including value classes, handle classes, and System objects. In the generated C code, MATLAB classes are represented as structures. If you generate C++ code, the default behavior of the code generator is to produce C++ classes for the MATLAB classes. You must be aware of certain usage notes and limitations when using classes in your MATLAB code that is intended for code generation.
coder.ClassType | Represent set of MATLAB classes |
Generate Code for MATLAB Value Classes
Use a value class in MATLAB code intended for code generation.
Generate Code for MATLAB Handle Classes and System Objects
Use your System object™ in MATLAB code intended for code generation.
Generate C++ Classes for MATLAB Classes
Generate a C++ class for a value class, handle class, or System object in your MATLAB code.
Specify Objects as Inputs at the Command Line
Specify that an entry-point input is an object of
a value class by using the codegen
-args
option.
Specify Objects as Inputs in the MATLAB Coder App
Define the type of a value class input from a test file or an example input.
MATLAB Classes Definition for Code Generation
Use classes in MATLAB code intended for code generation.
Classes That Support Code Generation
Generate code for MATLAB value and handle classes and user-defined System objects.
System Objects in MATLAB Code Generation
Special considerations for using System objects in code generated from MATLAB
Code Generation for Handle Class Destructors
Use a handle class destructor in MATLAB code intended for code generation.
Handle Object Limitations for Code Generation
Adhere to code generation restrictions for handle objects.
Troubleshoot issues with assignment of a property of a handle class.
Passing By Reference Not Supported for Some Properties
You cannot use certain properties with coder.ref
,
coder.rref
, or coder.wref
.
Resolve Error: Code Generator Failed to Produce C++ Destructor for MATLAB Class
Troubleshoot generation of standalone code for C++ destructor of a MATLAB class.