在可执行的Octave脚本中,我想传递包含矩阵的文件的名称,并使gnu octave将该文件信息作为矩阵加载。我该怎么做?
这是脚本应该是什么样子
#! /usr/bin/octave -qf
arg_list = argv()
filename = argv{1} % Name of the file containing the matrix you want to load
load -ascii filename % Load the information
传递的文件将是一个矩阵,其中包含任意大小的矩阵,例如2x3
1 2 3
5 7 8
在命令行,脚本应该以{{1}}运行
其中./myscript mymatrixfile
包含矩阵。
这是我尝试执行上面用octave
编写的脚本时得到的结果mymatrixfile
其中[Desktop/SCVT]$ ./octavetinker.m generators.xyz (05-14 10:41)
arg_list =
{
[1,1] = generators.xyz
}
filename = generators.xyz
error: load: unable to find file filename
error: called from:
error: ./octavetinker.m at line 7, column 1
[Desktop/SCVT]$
是包含我需要的矩阵的文件
答案 0 :(得分:10)
这应该有效:
#!/usr/bin/octave -qf
arg_list = argv ();
filename = arg_list{1};
load("-ascii",filename);
当您编写行load filename
时,您指示加载函数加载文件名“filename”。也就是说,你做了相当于load('filename');
的事情。
在MATLAB和Octave中,函数“foo”后跟一个空格,然后单词“bar”表示bar将作为字符串提交给foo。即使bar是工作空间中的已定义变量,也是如此。