Quarter number
q = quarter(t)
example
q = quarter(t) returns the quarter numbers for the datetime values in t. The q output is a double array containing integer values from 1 to 4, and is the same size as t.
t
q
double
collapse all
t = datetime(2013,05,31):calmonths(3):datetime(2014,05,31)
t = 1x5 datetime 31-May-2013 31-Aug-2013 30-Nov-2013 28-Feb-2014 31-May-2014
q = 1×5 2 3 4 1 2
datetime
Input date and time, specified as a datetime array.
This function fully supports tall arrays. For more information, see Tall Arrays.
This function fully supports distributed arrays. For more information, see Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox).
day | month | week | year
day
month
week
year
You have a modified version of this example. Do you want to open this example with your edits?