NumPy 数组操作 numpy.stack
这个函数沿着一个新轴连接数组序列。此函数自NumPy版本1.10.0起增加。需要提供以下参数。
注意 - 此函数从版本1.10.0开始提供。
numpy.stack(arrays, axis)
其中,
序号 | 参数及描述 |
---|---|
1 | arrays 一系列具有相同形状的数组 |
2 | axis 输入数组在结果数组中沿着该轴堆叠 |
示例
import numpy as np
a = np.array([[1,2],[3,4]])
print 'First Array:'
print a
print '\n'
b = np.array([[5,6],[7,8]])
print 'Second Array:'
print b
print '\n'
print 'Stack the two arrays along axis 0:'
print np.stack((a,b),0)
print '\n'
print 'Stack the two arrays along axis 1:'
print np.stack((a,b),1)
应该产生以下输出−
First array:
[[1 2]
[3 4]]
Second array:
[[5 6]
[7 8]]
Stack the two arrays along axis 0:
[[[1 2]
[3 4]]
[[5 6]
[7 8]]]
Stack the two arrays along axis 1:
[[[1 2]
[5 6]]
[[3 4]
[7 8]]]