group data every 10 days(decade)?
조회 수: 2 (최근 30일)
이전 댓글 표시
i have 1 year of temperature data, I have 3 arrays - Latitude, Longitude, Temperature, times (daily)
i want to group or extract it based on date for each month
D1 = [1,2,3,4,5,6,7,8,9,10];
D2 = [11,12,13,14,15,15,17,18,19,20];
D3 = [21,22,23,24,25,26,27,28,29,30,31];
how to do that? thank
댓글 수: 1
Arif Hoq
2022년 3월 28일
please attach your data.
i have 1 year of temperature data, I have 3 arrays - Latitude, Longitude, Temperature, times (daily)
i guess you have 4 columns ( Latitude, Longitude, Temperature and times)
채택된 답변
KSSV
2022년 3월 29일
Convert your dates into datetime or datevec. From this you can get the year, month, day etc.....from day data array, use ismember with D1, D2, D3 to get the indices and then use this indexing to extract the data.
So read about datetime / datevec, and ismember.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Dates and Time에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!