Question

I have 2 separate functions which one is in MS visual C++ and another is in Matlab. How do I execute the Matlab file in MS VISUAL? Is there a windows function to load the .m file and execute it straightly?

Était-ce utile?

La solution

Two ways to run Matlab code in C++:

  1. Call MATLAB Engine directly.

    The target machine needs to have the MATLAB installed. Check out Call MATLAB Functions from C and C++ Applications for more info and examples.

  2. Distribute MATLAB code into independent shared library (dlls).

    The target machine needs to have the MATLAB compiler runtime. Check out here on how to do this (with detail steps and example).

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top