How to handle big files
조회 수: 3 (최근 30일)
이전 댓글 표시
I have huge files and i want to know how i can handle them. Is splitting the big file the only option i have?
댓글 수: 0
답변 (1개)
Walter Roberson
2018년 9월 1일
Another approach is to fopen() the file, and textscan() using a repeat count (a number as the parameter after the format string) to control how many lines are read at a time; you would read a chunk, process it, go back to read another chunk, and so on.
댓글 수: 0
참고 항목
카테고리
Help Center 및 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!