After reading excel data into matlab the data is not complete
Ältere Kommentare anzeigen
After reading the excel data into matlab, the data is not complete, is there any limitation of data?
Antworten (1)
Cedric
am 13 Okt. 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 Kommentare
Cedric
am 21 Okt. 2017
Is this answer working for you? If so please [Accept] it. If not, I am happy to provide more information.
Wei-Hsuan
am 24 Okt. 2017
Walter Roberson
am 24 Okt. 2017
If your file is not confidential, can you attach it for us to examine?
Kategorien
Mehr zu Spreadsheets finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!