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.
我有一个简单的矩阵
A = 0.21415 2 3 5 7.453435 9
我想把它写在一个文件里,然后再读。
我应该使用save myfile A和load命令还是readmtx?
save myfile A
load
readmtx
不知道你会认为什么是“最好的”,但简单的代码和常见的做法确实只是:
A = magic(4) save filename A clear load filename
把事情简单化。使用save和load。
save
只是一个注释,您可以使用它save -ascii varname来获取变量的文本表示。默认值是一个.mat更高效但不可读且更难与外部程序交互的文件。
save -ascii varname
.mat