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')