MATLAB: How to import big data files

import data

Is there any fast way to import a hugh dataset (approx. 10Mio. rows) into Matlab? I tried importing my csv. file with the help of the import function, but its been running for a couple of hours by now. Has someone an useful advice?

Best Answer

"running for a couple of hours" that doesn't sound right.
  • How many columns are there?
  • How much RAM do you have?
  • If it's pure numerical data try load -ascii otherwise textscan they are faster.