| MATLAB® | ![]() |
R = addtodate(D, Q, F)
R = addtodate(D, Q, F) adds quantity Q to the indicated date field F of a scalar serial date number D, returning the updated date number R.
The quantity Q to be added must be a double scalar whole number, and can be either positive or negative. The date field F must be a 1-by-N character array equal to one of the following: 'year', 'month', 'day', 'hour', 'minute', 'second', or 'millisecond'.
If the addition to the date field causes the field to roll over, the MATLAB software adjusts the next more significant fields accordingly. Adding a negative quantity to the indicated date field rolls back the calender on the indicated field. If the addition causes the field to roll back, MATLAB adjusts the next less significant fields accordingly.
Modify the hours, days, and minutes of a given date:
t = datenum('07-Apr-2008 23:00:00');
datestr(t)
ans =
07-Apr-2008 23:00:00
t= addtodate(t, 2, 'hour');
datestr(t)
ans =
08-Apr-2008 01:00:00
t= addtodate(t, -7, 'day');
datestr(t)
ans =
01-Apr-2008 01:00:00
t= addtodate(t, 59, 'minute');
datestr(t)
ans =
01-Apr-2008 01:59:00
Adding 20 days to the given date in late December causes the calendar to roll over to January of the next year:
R = addtodate(datenum('12/24/2007 12:45'), 20, 'day');
datestr(R)
ans =
13-Jan-1985 12:45:00date, datenum, datestr, datevec
![]() | addsampletocollection | addts | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |