如何将matlab与QT集成
我想从 QT 4 调用 matlab(仅在我的项目中用于 UI),我可以在其中传递值并从 matlab 读回值。并运行 .m 脚本,然后从 matlab 获取结果。
I want to call matlab from QT 4 (used for UI only in my project) where i can pass values and read values back from matlab. and also run the .m scripts and then get the results back from matlab.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
QT 在这里无关紧要。
您基本上想要使用 Matlab 引擎。您可以从编译的 C++ 调用 Matlab(例如)。您可能需要使用
engOpen
启动连接,然后使用engEvalString
运行脚本。您可能还想使用engGetVariable
、mxGetClassID
和mxGetDimensions
来访问结果。但一定要阅读文档并尝试一下,然后带着更详细的问题回来。
QT is irrelevant here.
You basically want to use the Matlab Engine. You can call Matlab from compiled C++ (for example). You'll probably want to use
engOpen
to start the connection and thenengEvalString
to run scripts. You may also want to useengGetVariable
,mxGetClassID
andmxGetDimensions
to access the results.But definitely read the documentation and try it, then come back with more detailed questions.