It depends on what is in your .csv file. A safe option is to use the xlsread function:
[num,str,raw] = xlsread('file.csv');
The ‘num’ variable has the numeric values as a matrix, ‘str’ has the string information in a cell array, and ‘raw’ has everything in the file as a cell array.
