minute

Description

example

m = minute(t) returns the minute numbers of the datetime values in t. The m output is a double array the same size as t and contains integer values from 0 to 59.

The minute function returns the minute numbers of datetime values. To assign minute values to a datetime array, t, use t.Minute and modify the Minute property.

Examples

collapse all

t1 = datetime('now');
t = t1 + minutes(2:4)
t = 1x3 datetime
   29-Jan-2020 12:07:29   29-Jan-2020 12:08:29   29-Jan-2020 12:09:29

m = minute(t)
m = 1×3

     7     8     9

Input Arguments

collapse all

Input date and time, specified as a datetime array.

Extended Capabilities

See Also

| | | |

Introduced in R2014b