ee.Array.repeat

Repeats the array along the given axis. The result will have the shape of the input, except length along the repeated axis will be multiplied by the given number of copies.

UsageReturns
Array.repeat(axis, copies)Array
ArgumentTypeDetails
this: arrayArrayArray to repeat.
axisInteger, default: 0The axis along which to repeat the array.
copiesInteger, default: 2The number of copies of this array to concatenate along the given axis.