필터 지우기
필터 지우기

Regarding Days to month

조회 수: 1 (최근 30일)
Uday
Uday 2011년 7월 31일
I have some data from 2008-2011, which includes leap year 2008. my data sets has following values [year day hour ]
I have days in each year ( 1:365 or 1:366), i wanna to calculate the months.
Thank you

답변 (3개)

Jan
Jan 2011년 7월 31일
Standard:
datevec(datenum(2008, 1, 12))
>> [2008, 1, 12, 0, 0, 0]
Automatic months overflow:
datevec(datenum(2008, 1, 32))
>> [2008, 2, 1, 0, 0, 0]
Considers leap year:
datevec(datenum(2008, 1, 60))
>> [2008, 2, 29, 0, 0, 0]
datevec(datenum(2008, 1, 61))
>> [2008, 3, 1, 0, 0, 0]
  댓글 수: 3
Oleg Komarov
Oleg Komarov 2011년 7월 31일
And how the automatic month overflow that Jan shows doesn't solve your problem? Have you tried it?
Jan
Jan 2011년 7월 31일
@Pimple: I do not see the differnce. Let [Day] be the day number in the range 1:356 or 366. Then this gets the corresponding month: "D = datevec(datenum(Year, 1, Day, Hour, 0, 0)); Month=D(2)".
If this still does not help, please explain the wanted output exactly again.

댓글을 달려면 로그인하십시오.


the cyclist
the cyclist 2011년 7월 31일
I would expect you to be able to accomplish what you want with some combination of the command datevec(), datenum(), and datestr(). If you can't figure it out, post the exact format of what you have, and what you want as output. Show us the code that you have tried yourself.

Walter Roberson
Walter Roberson 2011년 7월 31일
T = datevec(datenum(YourYear, 1, YourDays, YourHours, 0, 0));
TheMonth = T(:,2)
But if you want to calculate fraction of a year, you do not need to calculate the month number:
YearFraction = datenum(YourYear, 1, YourDays, YourHours, 0, 0) - datenum(YourYear, 1, 1, 0, 0, 0);
  댓글 수: 2
Uday
Uday 2011년 8월 1일
I used fractYear=year+ ((day-1)+(hour/24))./(365+(eomday(year,2)==29));
it works fine.
Jan
Jan 2011년 8월 1일
@Pimple: I can see just a weak connection to your statement "i wanna to calculate the months". Please save our time by asking more precisely.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by