Guest User

Untitled

a guest
Feb 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. X1= Y[0:L-3,:]
  2. X2=Y[1:L-2,:]
  3. X3=Y[2:L-1,:]
  4. Y = Y[3:L,:]
  5. X= np.concatenate([X1,X2,X3],axis=1)
  6. print(f'X shape is {X.shape}')
  7. print(f'Y shape is {Y.shape}')
Add Comment
Please, Sign In to add comment