datevec
Convert a serial date number into a date vector.
📝Syntax
[Y, M, D, H, MN, S] = datevec(dv)
V = datevec(dv)
📥Input Arguments
Parameter Description
dv a scalar, vector, or multidimensional array e: a serial date number.
📤Output Arguments
Parameter Description
Y, M, D, H, MN, S double: Year, Month, Day, Hour, Minutes, Seconds.
V a vector of double: [Year, Month, Day, Hour, Minutes, Seconds].
📄Description

datevec converts a serial date number into a date vector.

To measure performance, it is better to use tic and toc functions.

💡Examples
datevec(now())
datevec(720840)
V = datevec([720840, now()])
[Y, M, D, H, MN, S] = datevec([720840, now()])
🔗See Also
tictoc
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub