MATLAB: How to read vector of strings into MATLAB

importstrings

I have an Excel file with a list of strings in the first column (one string per cell). How do I import the strings into a vector in MATLAB?

Best Answer

[numbers, strings, everything] = xlsread(filename);