After reading excel data into matlab the data is not complete
조회 수: 2 (최근 30일)
이전 댓글 표시
After reading the excel data into matlab, the data is not complete, is there any limitation of data?
댓글 수: 0
답변 (1개)
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
Walter Roberson
2017년 10월 24일
If your file is not confidential, can you attach it for us to examine?
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!