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 で Data Import and Export についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!