我想将 MATLAB Coder 输出与 Visual Studio 2010 中的 C# 项目集成。我的主要想法是:
- 在 Matlab 中创建 *.m 脚本
- 确保脚本与 Matlab Coder 兼容。
- 使用 Matlab Coder 生成 C++ 共享库 (DLL)
使用以下方式与 C# 集成:
//Starts the model execution. May take several minutes public static class DllHelper { [DllImport(@"test.dll",CallingConvention=CallingConvention.Cdecl,EntryPoint = "Run()")] public static extern int Run(); }
另外,我希望能够停止执行并检索一些部分结果。为此,我考虑了两种方法:
StopExecution
:RetrievePartialResults
[DllImport(@"test.dll",CallingConvention=CallingConvention.Cdecl,EntryPoint = "StopExecution ()")] public static extern int StopExecution (); [DllImport(@"test.dll",CallingConvention=CallingConvention.Cdecl,EntryPoint = "RetrievePartialResults()")] public static extern MyResults RetrievePartialResults();
有可能吗?如果没有,是否有任何替代方案?如果是,我在哪里可以找到更多示例?