一般的笔记本,在mat数据大于2GB的时候,通常不能直接保存,报错如下:
Save operation failed. this variable cannot be saved to a MAT-file whose version is older than 7.3,because it is too large.
这种情况,如果想要继续保存,可以转换成 7.3的即可。
示例:save(‘myFile.mat‘, ‘-v7.3‘) ;
原文:https://www.cnblogs.com/shyzh/p/12093686.html