Verificación de código
Después de generar el código, inspeccione el código fuente y los resultados de salida con fines de verificación. El informe de generación de código proporciona una interfaz interactiva para inspeccionar los archivos fuente en C/C++ generados, los tipos de datos generados y otros datos sobre el código. Acceda a un subconjunto de datos del informe de generación de código de forma programática a través del objeto de información del informe. Puede probar la salida del código MEX generado en comparación con el código de MATLAB® original, o puede crear pruebas personalizadas basadas en las clases de pruebas unitarias de MATLAB. Puede optar por generar comprobaciones de errores en tiempo de ejecución que alerten sobre errores durante la ejecución del código.
Funciones
codegen | Generate C/C++ code from MATLAB code |
coder.config | Create code generation configuration objects |
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.mfunctionname | Name of calling function or method (Desde R2021b) |
coder.runTest | Run test replacing calls to MATLAB functions with calls to MEX functions |
getLineColumn | Find locations of beginning and end of MATLAB code involved in code generation |
Clases
coder.HardwareImplementation | Hardware-specific configuration parameters for C/C++ code generation from MATLAB code |
Objetos
coder.CodeConfig | Configuration parameters for C/C++ code generation from MATLAB code |
coder.EmbeddedCodeConfig | Configuration parameters for C/C++ code generation from MATLAB code with Embedded Coder |
coder.MexCodeConfig | Configuration parameters for MEX function generation from MATLAB code |
Propiedades
coder.BuildLog Properties | Build logs produced during code generation |
coder.CodeFile Properties | Description of file containing text that is involved in code generation |
coder.File Properties | Description of file without text that is involved in code generation |
coder.Function Properties | Description of MATLAB function used in code generation |
coder.Message Properties | Description of message produced during code generation readiness analysis or during code generation |
coder.Method Properties | Description of method in a MATLAB class used in code generation |
coder.ReportInfo Properties | Code generation report information |
coder.Summary Properties | Summary of code generation from MATLAB code |
Temas
Informes de generación de código
- Code Generation Reports
View code generation results. - Tracing Generated C/C++ Code to MATLAB Source Code
Generate traceability tags. - Access Code Generation Report Information Programmatically
Access information about code generation such as input files, generated files, and error messages by using a report information object.
Comprobación del código generado
- Testing Code Generated from MATLAB Code
Verify numerical behavior of generated code. - Verify MEX Functions in the MATLAB Coder App
Compare results of running the original MATLAB function with the results from running the MEX function. - Verify MEX Functions at the Command Line
Test MEX functions withcoder.runTest
or thecodegen
-test
option. - Unit Test Generated Code with MATLAB Coder
Run MATLAB unit tests on generated code. - Unit Test External C Code with MATLAB Coder
Run MATLAB unit tests on generated code that integrates external C code.
Detección de errores en tiempo de ejecución
- Generate Standalone C/C++ Code That Detects and Reports Run-Time Errors
Generate standalone libraries and executables that detect and report run-time errors, such as out-of-bounds array indexing.
Resolución de problemas
- Avoid Duplicate Functions in Generated Code
Reduce the occurrence of duplicate functions in the generated code.