gpt4 book ai didi

octave - 如何重定向输出,在windows下运行octave

转载 作者:行者123 更新时间:2023-12-04 06:01:38 30 4
gpt4 key购买 nike

我想重定向 Octave 脚本的输出,例如 myscript.m > myoutput.mat有人知道怎么做吗?我在 Windows 7 下运行 Octave 音程。

最佳答案

今天我遇到了类似的问题。
有两种方法可以实现这一点。

  • 显而易见的不一定有效
    关于 what_i_want_to_print.m
    function what_i_want_to_print()
    disp("hello world");
    end

    然后从命令提示符执行:
    C:/Octave/bin/octave-cli.exe --eval "what_i_want_to_print()">filename.txt
  • 您还可以使用 diary 直接从 Octave 保存所有输出。功能:
    octave:1>> diary(FILENAME.TXT);
    octave:2>> what_i_want_to_print();
    octave:3>> diary off;
  • 关于octave - 如何重定向输出,在windows下运行octave,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8843388/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com