After reading excel data into matlab the data is not complete

After reading the excel data into matlab, the data is not complete, is there any limitation of data?

답변 (1개)

Cedric
Cedric 2017년 10월 13일
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

Is this answer working for you? If so please [Accept] it. If not, I am happy to provide more information.
Hello,thank you for answering. However the data is still not completed. For example, I have around 30000 data, it shows only 5000 data.
If your file is not confidential, can you attach it for us to examine?
Cedric
Cedric 2017년 10월 24일
편집: Cedric 2017년 10월 24일
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).

댓글을 달려면 로그인하십시오.

카테고리

태그

질문:

2017년 10월 13일

편집:

2017년 10월 24일

Community Treasure Hunt

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

Start Hunting!

Translated by