Spreadsheet (.xls) not fully loading
6 views (last 30 days)
Show older comments
I'm importing a spreadsheet using
[data header] = xlsread(filename);
, but only the first 438 rows (13 elements/row) is imported. The file is 1500 rows long. Why isn't the entire file imported? What's imported is only 438*13*8 = 45kb, so clearly it's not a memory limitation...or is it? I'm running Ubuntu 12.04 64-bit, matlab 2014a, so the 'memory' command doesn't work.
2 Comments
Star Strider
on 7 Aug 2014
Can you open it in Excel?
If so, is there anything strange in or after row 438?
Answers (2)
John
on 7 Aug 2014
5 Comments
Kelly Kearney
on 7 Aug 2014
I see the same behavior as John; biffparse (the basic xls reader) is returning NaNs at line 440 and fails to read beyond that. Not sure why, since biffparse is a mex file. Matlab 2013a on Mac OS X 10.9.3.
And in reply to the comment below, when not on Windows, reading from text files is always more stable (and usually quicker) than reading from Excel files. If your files are tab-delimited, just use dlmread or textscan.
azizullah khan
on 7 Aug 2014
Save these files as CSV format
and use csvimport it will be better....
Or which type of OP system you are using?
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!