Dates and Time
The date and time data types datetime
,
duration
, and calendarDuration
support efficient computations, comparisons, and formatted display of dates
and times. Work with these arrays in the same way that you work with numeric
arrays. You can add, subtract, sort, compare, concatenate, and plot date and
time values. You also can represent dates and times as numeric arrays or as
text. For more information, see Represent Dates and Times in MATLAB or watch Date and Time Arrays.
Functions
Topics
- Represent Dates and Times in MATLAB
Use
datetime
arrays to store date and time information. These arrays support arithmetic, sorting, comparisons, plotting, and formatted display. - Replace Discouraged Instances of Serial Date Numbers and Date Strings
As of R2022b, serial date numbers and date strings are not recommended for specifying dates and times. Use the
datetime
,duration
, andcalendarDuration
data types instead. Follow these recommendations for updating your code. - Compare Dates and Times Using Relational Operators
You can perform an element-by-element comparison of dates and times in two
datetime
arrays or twoduration
arrays using relational operators, such as>
,<
, and==
. Comparisons can also take other information into account, such as time zones and daylight saving time. - Set Date and Time Display Format
The
Format
property ondatetime
,duration
, andcalendarDuration
arrays controls the display of values in each array. You can change the value of this property. Changing theFormat
property does not change the values in the array, only their display. - Specify Time Zones
When you create a datetime, it is unzoned by default. If you work with datetime values from multiple time zones or need to account for daylight saving time, you might need to specify a time zone.
- Share Code and Data Across Locales
Follow these best practices when sharing code that handles dates and time with MATLAB® users in other locales. Write and read dates from other locales.
- Core Functions Supporting Date and Time Arrays
Many functions in MATLAB operate on date and time arrays in much the same way that they operate on other arrays.
Troubleshooting
Carryover in Date Vectors and Strings
If an element falls outside the conventional range, MATLAB adjusts both that date vector element and the previous element.
Converting Date Vector Returns Unexpected Output
Because a date vector is a 1-by-6 vector of numbers, datestr
might interpret your input date vectors as vectors of serial date numbers—or interpret
serial date numbers as date vectors—and return unexpected output.