month(x: number): number
Extracts the month from a Unix timestamp.
Returns a number representing the month for each element in x. Months are 0-indexed, where January is 0 and December is 11.
month(x: array<number>): array<number>
Extracts the month from a Unix timestamp.
Returns a number representing the month for each element in x. Months are 0-indexed, where January is 0 and December is 11.
x: array<number>
A Unix timestamp or an array/matrix of Unix timestamps.
array<number>
The month(s) corresponding to the input timestamp(s).
month(x: matrix<number>): matrix<number>
Extracts the month from a Unix timestamp.
Returns a number representing the month for each element in x. Months are 0-indexed, where January is 0 and December is 11.
x: matrix<number>
A Unix timestamp or an array/matrix of Unix timestamps.
matrix<number>
The month(s) corresponding to the input timestamp(s).