What is the best way to create a numpy array with the following data:
my_array = [[1, 2, 3], [1, 2, 3], ... , [1, 2 ,3]]
with [1, 2, 3] repeated about 100 times.
I have made some test with tile, repat, etc. but result is always [1, 2, 3, 1 ,2, 3, 1, 2, etc.]