Converts a decimal time series in HHMM.SS format to time data.
DECTIME(timeser, wrap, "date")
timeser |
- |
A series of decimal time values where 1715.10 represents the time 17:15:10. |
||||
wrap |
- |
Optional, an integer flag. Day wrap option:
|
||||
"date" |
- |
Optional. A string, the starting date in dd/mm/yy format. Defaults to the date of the time series. |
A series of time values.
W1: {1812.56, 2030.10, 110.00, 1310.00}
W2: dectime(w1)
W2 contains the time values 18:12:56, 20:30:10, 1:10:00, 13:10:00
The decimal time value are in the format HHMM.SS where HH ranges from 0 to 23, MM ranges from 0 to 59 and SS ranges from 0 to 59. Thus, the minimum time value is 0.0 (midnight) and the maximum is 2359.59 (one minute before midnight).