Converts seconds to hours.
SECONDS2DAYS(seconds)
seconds |
- |
A scalar or series, the seconds values. |
A series or array of hour values.
seconds2hours(3)
Returns 0.000833333, the number of hours in three seconds.
hours2seconds(seconds2hours(3))
Returns 3.0 seconds showing HOURS2SECONDS and SECONDS2HOURS are inverse functions.
W1: 0..720..3600
W2: seconds2hours(w1)
W3: hours2seconds(w2)
W1 contains the seconds series {0, 720, 1440, 2160, 2880, 3600}.
W2 contains the hours series {0, 0.2, 0.4, 0.6, 0.8, 1.0}.
W3 recovers the original seconds series.
SECONDS2HOURS converts a seconds value or series to hours.
See HOURS2SECONDS to convert a hours to seconds.