Hi, you can use tdfread or readtable, for example if your file name is example.csv :
T = readtable('example.csv');
tdfread('example.csv' , ',');
You can also define a specific format for your data like:
T = readtable('example.csv','Format',YourFormat);
But the thing that I usually do is I put my csv files into an excel file, and then I easily read my excel file, the output creates three variables for just numbers, just text and mixed data: