I used the Matlab Compiler Deployment Tool for generate a compile project (generate a dll) that can be referenced in .net. In the .net project i call functions of Matlab through the dll, and i have results. But i want get the current workspace the Matlab. Is this possible? Any idea? I am using Visual Studio 2010 and Matlab R2009b.
This is part of the code:
Using MatlabPackageNative;
public static MatlabPackageNative.Files Matlab;
Matlab.initialVariables();
Matlab.function1();
Matlab.function2();
I have already the solution, the way is the next:
Create a .m file (for example SaveWorskpace.m) con this information:
Add SaveWorskpace.m at the project with Matlab Compiler Deployment Tool.