Numpy notes

 
  • np.array_split()

      x0, x1, x2 = X[:, 0], X[:, 1], X[:, 2]
                 = np.array_split(X, 3, axis=1)