Repeat elements of an array.
| Parameters : | a : array_like 
 repeats : {int, array of ints} 
 axis : int, optional 
  | 
|---|---|
| Returns : | repeated_array : ndarray 
  | 
See also
Examples
>>> x = np.array([[1,2],[3,4]])
>>> np.repeat(x, 2)
array([1, 1, 2, 2, 3, 3, 4, 4])
>>> np.repeat(x, 3, axis=1)
array([[1, 1, 1, 2, 2, 2],
       [3, 3, 3, 4, 4, 4]])
>>> np.repeat(x, [1, 2], axis=0)
array([[1, 2],
       [3, 4],
       [3, 4]])