Lets say you have an multidimensional array
a = np.array([[1, 2], [3, 5], [4,5], [9,5]])
I want all the possible combinations of two arrays given the multidimensional array "a" so that:
[[1, 2],[3, 5]] , [[1, 2],[4,5]] ...
I have no idea how to due this. Does someone have some suggestions and tips?