Hi! I have 2gb csv file that I would like to plot (2 columns and around 100,000,000 rows). I read that tall is used for big arrays so I did the following:
s0 = tall(readmatrix('C:\Users\maram\Desktop\test6\RigolDS4.csv'));
x0 = s0(:, 1);
y0 = s0(:, 2);
plot(x0, y0);
I am getting the following error: out of memory, Error in line 1.
I thought of splitting the file, but I couldn't find a software that can open it. FYI, I have 12gb of ram. I would truly appreciate some help. Thanks!
0 Comments
Sign in to comment.