large csv import and split

4 Ansichten (letzte 30 Tage)
Ancalagon8
Ancalagon8 am 10 Feb. 2018
Bearbeitet: Ancalagon8 am 6 Jan. 2025
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!

Antworten (1)

Jeremy Hughes
Jeremy Hughes am 12 Feb. 2018
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.

Community Treasure Hunt

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

Start Hunting!

Translated by