I have 12 columns in excel that I want to import using one command.

조회 수: 2 (최근 30일)
Declan Simons
Declan Simons 2016년 8월 25일
답변: Adam 2016년 8월 25일
I am trying to import Columns B,C,F,G,J,K,N,O,R,S,X,Y with the range required of row 10 to 360010 and was looking to see if i could do this via a for loop.

채택된 답변

Adam
Adam 2016년 8월 25일
If it fits in memory you may be best loading in full range using e.g.
filename = 'someFile.xlsx';
xlRange = 'B10:Y360010';
res = xlsread( filename, xlRange );
since the help states that 'xlsread does not support non-contiguous ranges.' Then just delete those columns you don't want afterwards.
Otherwise as you say, it may be better to just load in only those columns you need using multiple xlsread instructions for any contiguous blocks you have.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by