After reading excel data into matlab the data is not complete
1 回表示 (過去 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!