- 使用np.ndarray()创建
-
np.random.randn(3,4) 【生成的数据符合正态分布】
- stack():Join a sequence of arrays along a new axis
- hstack():Stack arrays in sequence in horizontally(column wise)
- numpy.vstack(tup),等价于np.concatenate(tup, axis=0) if tup contains arrays thatare at least 2-dimensional.

- numpy.dstack:Stack arrays in sequence depth wise(along third dimension)
- numpy.concatenate函数,函数原型numpy.concatenate((a1,a2..),axis=0)
Numpy
原文:http://www.cnblogs.com/lianjie/p/7646960.html