importing an excel table with words
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
AA
el 9 de Oct. de 2015
Editada: Nobel Mondal
el 9 de Oct. de 2015
I got an excel table with text and numbers. The code below does not allow me to display the text properly in the matlab table. how can i import the file as cell array so words can be read as well?
fileToRead = fullfile('C:\Users\Untitled Spreadsheet.xlsx');
circa1 = xlsread(fileToRead);
0 comentarios
Respuesta aceptada
Nobel Mondal
el 9 de Oct. de 2015
Editada: Nobel Mondal
el 9 de Oct. de 2015
'xlsread' returns 3 outputs -
[numOnly, textOnly, rawDataInCellArray] = xlsread(xlFile);
If you need the data in only cell array format, use the below style :
[~, ~, mydata] = xlsread(xlfile);
Please try 'help xlsread' to get more info.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!