I have an array with a sequence of integers like this:
import numpy as np
a1 = np.zeros((1, 100000))
a2 = np.arange(-50, 50+1)
#so a2 looks like this
a2 = [-50, -49, ....., -1, 0, 1, ...., 49, 50]
how can i add the sequence of a2, to a1 multiple times in a row?