Import CSV file with mixed data types
For the case when you know how many columns of data there will be in your CSV file, one simple call to textscan like Amro suggests will be your best solution. However, if you don’t know a priori how many columns are in your file, you can use a more general approach like I did … Read more