Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从 matlab 创建一个 .txt 文件来完成学校的家庭作业。文件的格式有点随意。需要在第一行包含我的一个变量。第二行的时间。一些文本,然后是第三行的另一个变量值。所有后面都是我需要添加标题的矩阵。
有没有人知道一个很好的教程或文章来概述这种东西?我找到了一对,听说过 fprintf() 并且认为我对如何继续有一个很好的想法。但是我仍然对如何做矩阵有点困惑。任何帮助表示赞赏!
这是您在 matlab 中创建一个 txt 文件并向其打印一些变量的方式:
fid = fopen( 'my_file.txt', 'wt' ); fprintf( fid, '%f,%f,%f,%f\n', a1, a2, a3, a4); fclose(fid);