MATLAB: How to read xls file with char value

excelxlsread

after using xlsread function,Only numerical output variable but Character variable can not be read pleas guide me.

Best Answer

Use xlsread with at least two outputs:
[num,str] = xlsread(filename);
Related Question