I have a bunch of .mat files that were created on a PC (windows 8.1) using MATLAB 7.10.0 R2010a.
I am trying to use MATLAB 7.12.0 2011a on a MAC with Yosemite to open those files and they won't open. Here is how the file is saved on MATLAB 7.10.0 R2010a in Windows 8.1:
save('test.mat',test)
Here is how the file is loaded on MATLAB 7.12.0 2011a on a MAC with Yosemite
load 'test.mat'
I get the following error message:
??? Error using ==> load
Unable to read MAT-file /Users/User1/test.mat: not a
binary MAT-file.
Try LOAD -ASCII to read as text.
Error in ==> test at 63
newdata = load(in_fname);
When I try double clicking any of the .mat files I get a bunch of java error messages in red font color.
I opened one of the .mat files in a text editor and the top of it says:
MATLAB 5.0 MAT-file, Platform: PCWIN,
Is there a way I can convert the files so that they read properly on a MAC?
I tried saving the files in 7.3 format by going to File-->Preferences-->General-->MAT-Files and switching the MAT-file save format to 7.3, but that didn't solve the problem.