How to execute a Matlab function in MS Visual C++?

2.7k Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

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