mathematica 和 matlab 与 NetLink 交互以及它们之间的数据交换

发布于 2024-11-09 19:32:34 字数 252 浏览 0 评论 0 原文

我在mathematica中使用以下代码来调用matlab

In[1]:= Needs["NETLink`"]
matlab = CreateCOMObject["matlab.application"]
In[5]:= matlab@Execute["a=[1 2;3 4]"]

我想从mathematica获取matlab工作区变量“a”并将其转换为mathematica矩阵。 我怎样才能用netlink做到这一点?

I used the following code in mathematica to call matlab

In[1]:= Needs["NETLink`"]
matlab = CreateCOMObject["matlab.application"]
In[5]:= matlab@Execute["a=[1 2;3 4]"]

I want to get matlab workspace variable "a" from mathematica and convert it to mathematica matrix.
How can i do this with netlink?

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

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

发布评论

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

评论(2

一场信仰旅途 2024-11-16 19:32:35

我不知道你如何与 MATLAB 连接...你的 ProgID 在我的上不起作用,我也不确定它是否正确。一种更简单、更可靠的方法是在 MATLAB 中创建您想要的任何内容,然后将其保存为 .mat 文件并将其导入 Mathematica。这是一个小例子:

MATLAB:

a=magic(4)

a =

    16     2     3    13
     5    11    10     8
     9     7     6    12
     4    14    15     1

save('file','a');

Mathematica:

a = Transpose@Import["file.mat", {"HDF5", "Datasets", "a"}];

I do not know how you connect with MATLAB... your ProgID doesn't work on mine, and I'm not sure if it is correct either. A simpler and more reliable way to do it would be to create whatever you want in MATLAB and then save it as a .mat file and import it into Mathematica. Here's a small example:

MATLAB:

a=magic(4)

a =

    16     2     3    13
     5    11    10     8
     9     7     6    12
     4    14    15     1

save('file','a');

Mathematica:

a = Transpose@Import["file.mat", {"HDF5", "Datasets", "a"}];

enter image description here

我的奇迹 2024-11-16 19:32:35

假设您获得了表单的输出,

out = "
  a =

      16     2     3    13
       5    11    10     8
       9     7     6    12
       4    14    15     1

  ";

您可以使用 ImportString 命令将其转换为 Mathematica 的格式:

matrix = ImportString[out, "Table", "IgnoreEmptyLines" -> True, 
   "HeaderLines" -> 1];
matrix // TableForm

Assuming that you get output of the form

out = "
  a =

      16     2     3    13
       5    11    10     8
       9     7     6    12
       4    14    15     1

  ";

you can convert this into Mathematica's format by using ImportString command:

matrix = ImportString[out, "Table", "IgnoreEmptyLines" -> True, 
   "HeaderLines" -> 1];
matrix // TableForm
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文