I want to save my xy3 cell contains 2401x1
And I save to .mat file , then when I import data in workspace
it's show error "file contains uninterpretable data"
Why I can't read the cell file
thanks!
No products are associated with this question.
Do not uiimport() or import() your data: load() it.
This is my save code
savefile = 'listmode data.mat';
save(savefile, 'xy3');
It appear this error:
Warning: Variable 'xy3' cannot be saved to a MAT-file whose version is
older than 7.3.
To save this variable, use the -v7.3 switch.
Skipping...
3 Comments
Direct link to this comment:
http://www.mathworks.com/matlabcentral/answers/54114#comment_111950
Sir your link doesn't exist.
Direct link to this comment:
http://www.mathworks.com/matlabcentral/answers/54114#comment_111951
Hi,it is OK~
Direct link to this comment:
http://www.mathworks.com/matlabcentral/answers/54114#comment_111984
Please post the SAVE command you are using for storing the data. Then we can suggest a corresponding LOAD command.