1

有谁知道我如何能够在我的 mac 上从我的 tcl 脚本中运行 matlab .m 文件。我想做一些链接这个:

  1. 在我的 .tcl 脚本中定义一些变量:

    # run_matlab.tcl:
    set a 1;
    set b 2;
    set c 3;
    
  2. 打开 matlab test.m 并使用预定义的变量(在 tcl 中预定义)执行一些计算,例如:

    % test.m
    D = [a b c];
    E = [c b a]';
    F = D*E
    
  3. 回到 tcl 根据 F 设置新变量(在 matlab 中计算)并使用 F 执行更多计算,例如:

    # run_matlab.tcl:
    set m $F;
    set n [expr 3*$m];
    puts $n
    

我是一个绝对的新手,不知道如何处理这个问题。有谁能够帮我??

第一个解决方案

我已经做了一些事情,但我对此并不是 100% 满意。我的解决方案如下所示:

    # test.tcl
    # parameter definition
    set a 7;
    set b 5;

    # calculation of 'e' in matlab
    exec /Applications/MATLAB_R2012a.app/bin/matlab -nosplash -nodesktop -r test_matlab($a,$b);

    # input calculated variables
    # c = a+b = 2
    # d = a-b = 12
    source output.tcl

    # do further calculations
    set e [expr $c+$d];
    puts $e

Matlab .m 文件看起来像这样:

function test_matlab(a,b)
% calculate a and b
c = a+b;
d = a-b;
% output
fprintf(fopen(['output.tcl'],'a+'),'set c %f;\n',c);
fprintf(fopen(['output.tcl'],'a+'),'set d %f;\n',d);
% quit matlab
quit
end

所以有人可以看到,我要用'source output.tcl'加载我的计算数据。

但是:有没有办法让我的变量直接进入 tcl 变量?那么列表呢?如果我在matlab中计算了一个向量,我怎样才能直接将这个向量保存到一个列表中?

4

2 回答 2

0

我对TCL没有经验。但我相信你可以让它调用带有参数的命令。基本上你有两个选择:

  1. 从命令行调用 Matlab(特别是参见matlab -r "statement"参考资料)并将您的声明放入调用中。

  2. 您可以将您的 Matlab 脚本设置为服务器,并让它在您发送命令和接收答案的某个端口上进行侦听。在 Windows 上,您还可以使用 COM 连接到 Matlab 并发送命令 - 但我找不到 Mac/Linux 上是否有类似的功能。

此外,您可能会考虑使用mbuild编译您的脚本。这样不仅可以分发它-而且我认为如果您编译为java,则可能更容易集成到TCL中。

于 2012-11-21T12:56:54.360 回答
0

您可以让 matlab 简单地打印这两个值(在单独的行上或在一行上以空格分隔)。然后,在 Tcl 中:

set output [exec matlab ...]
lassign [split $output] c d
# do stuff with $c and $d
于 2012-11-21T14:52:57.270 回答