线程化 Matlab 代码

发布于 2024-10-21 14:21:12 字数 193 浏览 2 评论 0原文

我正在开发一个java代码,它通过jar文件调用来使用在matlab中编写的某些代码。

由于有很多函数需要处理..最好在java中关联一个单独的线程,与每个matlab函数调用相关联,因为它是一个密集的处理,需要大量的处理时间...

哪一种是更好的结构方式代码? 使用多线程还是作为简单的函数调用进行调用?

提前谢谢..:)

I'm developing a java code which makes use of certain code written in matlab via calling by jar file.

Since there are many functions to work on.. will be good to associate a separate thread in java, associated with each matlab function calling, because its an intense processing which requires considerable time of processing...

Which one will be better way to structure the code?
Using multiple threads or calling as simple function call?

Thanx in Advance.. :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难理解 2024-10-28 14:21:12

除非您使用并行工具箱,否则多线程不起作用。 Matlab 在单个线程中执行计算,并且不允许并发请求。对 jar 文件的调用将被阻塞,直到 Matlab 完成执行前一个调用。

解决这个问题的唯一方法(除了我提到的工具箱)是通过 Runtime.exec() 将每个函数作为单独的进程执行,并使用 RMI 与新进程进行通信。

Unless you're using the Parallel toolbox, multithreading does not work. Matlab executes its computations in a single thread and does not permit concurrent requests. Calls to your jar file will block until Matlab has finished executing the previous call.

The only way around this (other than the toolbox I mentioned) is to execute each function as a seperate process via Runtime.exec() and use RMI to communicate with the new process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文