Guest User

Untitled

a guest
Nov 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import numpy
  2.  
  3. x0 = numpy.random.rand(1000, 1000) # x_i likewise
  4. a = [[x0], [x1, x2], [x3, x4, x5]] # and more
  5.  
  6. b = numpy.concatenate(a)
  7. # b = [x0, x1, x2, x3, x4, x5]
Add Comment
Please, Sign In to add comment