How to execute a Matlab script from C++

后端 未结 3 866
时光说笑
时光说笑 2020-12-10 08:12

I have a C++ program in Visual Studio that records data and saves it into a file. I want to do some Matlab analysis reading from that file and save the results in a separate

3条回答
  •  情深已故
    2020-12-10 09:00

    You can make use of the Matlab Compiler SDK, which turns your matlab code into a standalone program or library.

    You can then call this libary from your C++ code, and the end user won't even need to have Matlab installed (just the Compiler Runtime, which you can deploy "royalty-free"), see this web page for what you can do with it.

提交回复
热议问题