'-v7.3' saving suddenly broken?
조회 수: 6 (최근 30일)
이전 댓글 표시
Hello,
I have been using the command save(filename,variables,'-v7.3') for a long time to save bigger variables. Those are stored to analyse them afterwards.
After a month of not using Matlab at all, suddenly '-v7.3' seems to produce only corrupted files as indicated by the following simple test:
a=1;
save('a','a','-v7.3')
load('a')
a
results in:
Error using load
Unable to read MAT-file
\filepath*\a.mat.
Not a binary MAT-file. Try load -ASCII to read as text.
* I do not want to put the whole private filepath here. But I checked it, it is correct and the file 'a.mat' is indeed present there.
while:
a=1;
save('a','a')
load('a')
a
works fine and results in:
a =
1
Dragging the '-v7.3' file into matlab with the mouse or selecting it from the "current folder" tap also delivers the same error message.
So the question is now "how to fix this?". I would be glad for any suggestions what goes wrong here!
Best
댓글 수: 6
Walter Roberson
2021년 7월 28일
These days, most of the people i see reporting these kinds of issues, seem to be using OneDrive. That could be Sample Bias: perhaps a lot more people are using OneDrive rather than it being inherently less stable.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!