How to batch convert to C/C++ using Coder App?

1 visualización (últimos 30 días)
shawn gong
shawn gong el 20 de Oct. de 2020
Editada: Shaunak el 9 de Jun. de 2025
Hi,
I have a large Matlab package that consists of hundreds of m files. They are in several folders, some start with '+'.
How do I batch convert them to C/C++ using Coder App? Do I have to run Coder App one-by-one?
Thanks.

Respuestas (1)

Shaunak
Shaunak el 9 de Jun. de 2025
Editada: Shaunak el 9 de Jun. de 2025
Hi Shawn,
It is my understanding that you want to batch convert a large MATLAB package consisting of many M files into C/C++ code using the MATLAB Coder App.
Although the MATLAB Coder App does not support batch processing of multiple files directly in one go, however, you can automate the process using a script that calls the “codegen” function for each entry-point function.
Here’s how you can do it:
  • Organize Your Code: Ensure that your MATLAB code is structured properly, with entry-point functions accessible for code generation.
  • Create a Script for Batch Processing: You can write a MATLAB script to loop through your entry-point functions and generate the C/C++ code. Here’s an example:
% List of entry-point functions
entryPoints = {'function1', 'function2', 'function3'}; % Add your function names here
% Loop through each entry-point function
for i = 1:length(entryPoints)
% Generate C/C++ code for each function
codegen(entryPoints{i}, '-args', {zeros(1, 10), zeros(1, 10)}); % Adjust input arguments as needed
End
For any queries on “codegenfuction, kindly refer to the MathWorks documentation linked below:
  • Run the Script: Execute the script in MATLAB, and it will generate the C/C++ code for each specified function.
  • Using the Coder App: If you prefer using the MATLAB Coder App, you will need to manually select each function and specify input types, which can be time-consuming for many files.
By using the approach mentioned above, you can efficiently generate C/C++ code for multiple functions without having to run the Coder App for each function separately.
Hope this helps!

Categorías

Más información sobre MATLAB Coder en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by