필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

specific files reading from folder

조회 수: 2 (최근 30일)
Uday
Uday 2011년 8월 17일
마감: MATLAB Answer Bot 2021년 8월 20일
I have 2 years data 2009 & 2010, the data files are in daily format (365/year).
I would like to read monthly data .e.g for January month I would like to read first 31 files,for feb 28 or 29 and so on. data file name shows us year, month and day (e.g stt_20090101.hdf5). could somebody please tell me how I can use for loop to read these files same time for year and month as well. thank you

답변 (1개)

Fangjun Jiang
Fangjun Jiang 2011년 8월 17일
AllDates=datevec(datenum('2009/1/1')+(0:750));
Year=2009;
Month=2;
SelectedDates=AllDates(and(AllDates(:,1)==Year,AllDates(:,2)==Month),1:3);
for k=1:size(SelectedDates,1)
filename=sprintf('stt_%d%02d%02d.hdf5',SelectedDates(k,:))
end

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by