How to save V7.3 format variable quickly (in few seconds) like ordinary save command
古いコメントを表示
I have a varaibale of size >2GB. I wanted to save it. So matlab shown me an error when I used ordinary save command [save info.mat info;] like below.
For variables larger than 2GB use MAT-file version 7.3 or later.
So i switched to
save ('info.mat','info', '-v7.3');
Now when I use this, It is taking aound 30-40 minutes to save that variable!!
Is there any way out I can quicken this process in several seconds..??
Please help!
3 件のコメント
Walter Roberson
2019 年 4 月 10 日
Experiment with saving without compression; see https://www.mathworks.com/help/matlab/ref/save.html#bvmu1wo
Megha
2019 年 4 月 10 日
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Workspace Variables and MAT Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!