How to get readcell to read leading empty columns and rows in spreadsheet
조회 수: 32 (최근 30일)
이전 댓글 표시
Say I have an Excel file with some entries, offset so that they start at B2 instead of A1 (see image below):
So column A is completely empty, and row 1 is completely empty.
Can I use readcell() so that it includes the empty leading columns and rows? I want to do this without specifying a full range (i.e., 'A1:J50') because I don't know how large my data is. I want MATLAB to find that out for me. If I do readcell(file,'Range','A1'), then it omits the leading row because it's empty, which is the issue I'm facing.
댓글 수: 0
채택된 답변
추가 답변 (1개)
Arif Hoq
2022년 11월 30일
please refer to this answer:
https://www.mathworks.com/matlabcentral/answers/90811-how-to-import-excel-file-including-empty-cells
You don't need to specify the range. readtable, readcell, readmatrix functions can export all your data from excel.
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!