How can I list which file format version was used for existing .MAT files?

22 views (last 30 days)
Hi, we have a large application where Matlab .MAT files are stored on a network and shared between different users. These users run different versions of Matlab, ranging from v6.1 up to v8.2 (R2013B). In updating this application from v6.1, we initially did not recognize that the MAT file format had changed -- this has since been fixed. In the interim period, however, we inadvertently created a mix of .MAT files created with different versions of Matlab. I would like to list which version each .MAT file is stored in so that I can work on standardizing the file format to version 6. I have not been able to find any way to list the file version, however. Any ideas?
Thanks for your help.

Answers (1)

Wayne King
Wayne King on 7 Jan 2014
Edited: Wayne King on 7 Jan 2014
type('matfilename.mat')
Or the functional form
type matfilename.mat
Should give you the MAT file version and platform information.
  5 Comments
Tom
Tom on 7 Jan 2014
Thank you Friedrich. If I just do a save command in Matlab R2013B (v8.2) the header always says "MATLAB 5.0 MAT-file". It says the same thing if I save it in Matlab v6.1 but the actual format is different. So, I think that's just the generic file format and that there are other version differences somewhere else in the file. I just don't know how to detect these and decode them into the true MAT-file version.
Tom
Tom on 7 Jan 2014
Wayne, using the date is a good idea, but we had multiple versions of Matlab running during the same time period, each saving MAT-files in their native format. I've fixed the code so that now they will all save using the '-v6' option, but I still need to clean up the mess from before the fix. So being able to identify the file format would be very helpful. Matlab can obviously determine this when it loads a file, but it's sure not obvious how to do this programmatically.

Sign in to comment.

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!