I've got a problem on creating a numpy array of numpy arrays. I would create it in a loop:
a=np.array([])
while(...):
...
b= //a numpy array generated
a=np.append(a,b)
...
Desired result:
[[1,5,3], [9,10,1], ..., [4,8,6]]
Real result:
[1,5,3,9,10,1,... 4,8,6]
Is it possible? I don't know the final dimension of the array, so I can't initialize it with a fixed dimension.