large csv import and split

What i am trying to do is to import my file (weekly file size around 25GB) to process it. Microsoft excel doesn't open it of course.
How can i import my initial large file into 3 different columns?Thanks in advance!

回答 (1 件)

Jeremy Hughes
Jeremy Hughes 2018 年 2 月 12 日

0 投票

With a file that's 25GB, you're going to need to break the data up. I recommend using
ds = tabularTextDatastore(filename)
while hasdata(ds)
T = read(ds)
end
You might have to tweak some settings, but this is the easiest way.

質問済み:

2018 年 2 月 10 日

編集済み:

2025 年 1 月 6 日

Community Treasure Hunt

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

Start Hunting!

Translated by