Domanda

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?

È stato utile?

Soluzione

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).

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top