how shall I read/write/add-write big data in MatLab?

조회 수: 1 (최근 30일)
vx2008
vx2008 2017년 1월 1일
댓글: vx2008 2017년 1월 2일
I set big data in variable X and Now I want to save it on my hard disk;
I use "save output X", and get warning: "out of memory";
I use "xlswrite('output.xlsx',X)", and get warnning: it is too big for this format;
Now how shall I write this big data and especially what if I want to add other data for other code into the "output" and how shall I read it out if it is too big?

답변 (2개)

Walter Roberson
Walter Roberson 2017년 1월 1일
If it is a numeric array, you could fwrite() it as a binary file.
For non-numeric items sometimes using memory mapping is appropriate.
You might be able to use the matFile interface to save part of it at a time.
  댓글 수: 2
Image Analyst
Image Analyst 2017년 1월 1일
See memmapfile().
vx2008
vx2008 2017년 1월 2일
thanks a lot! I now try to use "dlmwrite/dlmread' and it is ok; thanks everyone.

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2017년 1월 1일
One option is to split the workbook up into smaller workbooks, if there is anyway that makes sense, otherwise just arbitrarily at rows like 'firstHalf.xlsx' and 'secondHalf.xlsx'.

카테고리

Help CenterFile Exchange에서 Large Files and Big Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by