gpt4 book ai didi

arrays - 如何在 Matlab 中将数组打印到 .txt 文件?

转载 作者:太空宇宙 更新时间:2023-11-03 19:16:37 24 4
gpt4 key购买 nike

我刚开始学习Matlab,所以这个问题可能很基础:

我有一个变量

a=[2.3 3.422 -6.121 9 4.55]

我希望将值输出到这样的 .txt 文件中:

2.3
3.422
-6.121
9
4.55

我该怎么做?

fid = fopen('c:\\coeffs.txt','w'); //this opens the file
//now how to print 'a' to the file??

最佳答案

以下应该可以解决问题:

fid = fopen('c:\\coeffs.txt','wt');  % Note the 'wt' for writing in text mode
fprintf(fid,'%f\n',a); % The format string is applied to each element of a
fclose(fid);

有关更多信息,请查看 FOPEN 的文档和 FPRINTF .

关于arrays - 如何在 Matlab 中将数组打印到 .txt 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1456882/

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