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 中,我希望能够使用与 .mat 不同的扩展名(例如“file.settings”/“file.data”/等)保存(并重新打开)MATLAB 文件,以便例如文件“file.settings”实际上是变相的“file.mat”。
如何实现?
调用时可以直接指定文件扩展名save。使用以下任一形式:
save
save filename.settings save('filename.settings')
要加载文件,由于 Matlab 不知道扩展名,您必须指出格式实际上是 .mat 文件的格式:
load filename.settings -mat load('filename.settings','-mat')