如何在Octave中输出矩阵?

时间:2017-06-01 04:09:52

标签: matrix printf octave

我有2个文件,第一个是主文件,调用第二个文件。 所以,我想输出在第二个文件中创建的矩阵,同时运行第一个文件,我想通过主文件中的printf可能??

我已经尝试过这种方式而且没有工作,除了在列的位置显示行的事实:

    printf("[%f; %f; %f]\n",r)

2 个答案:

答案 0 :(得分:3)

如果你想调试输出(特别是在循环内),你最初使用more off禁用寻呼机,然后使用disp(of_course_you_have_to_add_the_name_of_your_matrix_here)或只提及变量而不尾随;或删除尾随;在作业

more off
for k=1:2
  a = rand(2) * k;  # remove trailing ;
  a                 # or mention it without ;
  disp (a)          # or use disp which doesn't show the variable name
endfor

输出

a =

   0.80112   0.53222
   0.48930   0.56336

   0.80112   0.53222
   0.48930   0.56336
a =

   1.30374   1.85382
   0.30519   0.42486

   1.30374   1.85382
   0.30519   0.42486

看到a显示两次:一次是" a ="并且一旦没有

答案 1 :(得分:2)

在当前文件夹中创建以下文件。

%%% in file: second.m

A = [1,2;3,4];    % adding a semicolon suppresses the output

%%% in file: master.m

% run 'second.m' script - this will add A on the workspace, since
% running this script is as if you had dumped the file's contents here
second    

% call the value of A without a semicolon to show contents on screen
A         

然后从您的八度音阶终端运行' master.m'脚本:

master

这将在屏幕上显示A的内容。