C++ Source Code to MATLAB
Ältere Kommentare anzeigen
Hey everyone,
Here's what I am trying to do. I have found some great source code online for a free simulation software written in C++. While the software is great, I'd like to integrate it into MATLAB. I understand that using MEX functionality in MATLAB you can use C++ source code in MATLAB. I'm not too familiar with this, so a tutorial or links to help me out would be great. I can provide a link to the source code if needed? But I'm really looking for a general implementation.
I read through some documentation but as one can expect the learning curve is significant.
3 Kommentare
James Tursa
am 3 Mai 2017
Is this simulation interactive, or will it run essentially as a batch job once given some inputs? What is the output of the simulation? Some variables or plots or files or ...?
Walter Roberson
am 3 Mai 2017
If you can create static class methods with extern "C" to interface to the simulation functions, then you can probably call the routines by using loadlibrary()
Note: loadlibrary() does not work to call general C++ methods, only things that extern "C"
Hanif
am 4 Mai 2017
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Write C++ Functions Callable from MATLAB (MEX Files) finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!