gpt4 book ai didi

matrix - 如何在 Octave 中输出矩阵?

转载 作者:行者123 更新时间:2023-12-01 14:01:44 24 4
gpt4 key购买 nike

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

我已经尝试过这种方式但没有用,除了在列的位置显示行:

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

最佳答案

如果你想调试输出(尤其是在一个循环中),你首先用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 = ",一次没有

关于matrix - 如何在 Octave 中输出矩阵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44298411/

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