Mostrar comentarios más antiguos
Hello! I wanted to find out, how can I convert c++ code to MATLAB? Is it possible? And if so, what are the steps? Regards.
Respuestas (1)
Nitin Kapgate
el 30 de Oct. de 2020
0 votos
If your goal is to convert C++ code to MATLAB code, manual conversion is required.
However, if you only need to call the C++ code from MATLAB, simpler solutions are possible:
- Option A: create a MEX file via MATLAB Coder (using MATLAB Coder on a simple M file that just calls the C++ function using coder.cinclude and coder.ceval) - see the last comment on a similar question.
- Option B: create a MEX file via the MEX command (you will need to write a MEX wrapper for the C++ code). More information can be found on this documentation page.
Categorías
Más información sobre Call C++ from MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!