After reading excel data into matlab the data is not complete

1 visualización (últimos 30 días)
Wei-Hsuan
Wei-Hsuan el 13 de Oct. de 2017
Editada: Cedric el 24 de Oct. de 2017
After reading the excel data into matlab, the data is not complete, is there any limitation of data?

Respuestas (1)

Cedric
Cedric el 13 de Oct. de 2017
Look at the possible output arguments of XLSREAD. The function splits numeric and text data, and also outputs raw data:
[num, txt, raw] = xlsread( 'MyFile.xslx' ) ;
will extract numbers in numeric array num, the text in cell array txt, and everything in cell array raw.
If you have mixed content, raw is what you need to use:
[~, ~, raw] = xlsread( 'MyFile.xslx' ) ;
  4 comentarios
Walter Roberson
Walter Roberson el 24 de Oct. de 2017
If your file is not confidential, can you attach it for us to examine?
Cedric
Cedric el 24 de Oct. de 2017
Editada: Cedric el 24 de Oct. de 2017
And if it is somehow confidential but not completely, you can contact me using my profile email and we could check that out privately (I'd reply using my email address and you could reply attaching your file).

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by