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
   17-Aug-2020 15:44:52   17-Aug-2020 15:45:52   17-Aug-2020 15:46:52

m = minute(t)
m = 1×3

    44    45    46

Input Arguments

collapse all

Input date and time, specified as a datetime array.

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

See Also

| | | |

Introduced in R2014b