在這裡我們介紹兩個拼接數組的方法:
np.vstack():在垂直方向上堆疊
np.hstack():在水平方向上平鋪
import numpy as np arr1=np.array([1,2,3]) arr2=np.array([4,5,6]) print np.vstack((arr1,arr2)) print np.hstack((arr1,arr2)) a1=np.array([[1,2],[3,4],[5,6]]) a2=np.array([[7,8],[9,10],[11,12]]) print a1 print a2 print np.hstack((a1,a2))
結果如下:
[[1 2 3]
[4 5 6]]
[1 2 3 4 5 6]
[[ 1 2]
[3 4]
[5 6]]
[[ 7 8]
[ 9 10]
[11 12]]
#[[ 1 2 7 8 ]
[ 3 4 9 10]
[ 5 6 11 12]]
這裡還需要強調一點,在hstack應用的時候,我在做cs231n上的assignment1的時候,我總是在hstack這裡出錯!才發現我以前學的很膚淺啊!
(1)np.hstack()
函數原型:numpy.hstack(tup)
#其中tup是arrays序列,tup : sequence of ndarrays
The arrays must have the same shape along all but the second axis,except 1-D arrays which can be any length.
等價於:np .concatenate(tup, axis=1)
例子一:
import numpy as np brr1=np.array([1,2,3,4,55,6,7,77,8,9,99]) brr1_folds=np.array_split(brr1,3) print brr1_folds print brr1_folds[0:2]+brr1_folds[1:3] print np.hstack((brr1_folds[:2]+brr1_folds[1:3])) print brr1_folds[0:2] print brr1_folds[1:3] #print np.hstack((brr1_folds[0:2],brr1_folds[1:3]))
最後一行如果不註解掉就會出錯;
[array([1, 2, 3, 4]), array([55, 6, 7, 77]), array([ 8, 9, 99])]
[array([1, 2, 3, 4]), array ([55, 6, 7, 77]), array([55, 6, 7, 77]), array([ 8, 9, 99])]
[ 1 7 77 8 9 99]
[array([1, 2, 3, 4]), array([55, 6, 7, 77])]
[array([55, 6, 7, 77 ]), array([ 8, 9, 99])]
錯誤的原因就是以為我的array的維度不一致。改成 就好啦,加號是list的拼接!
範例二:
print np.hstack(([1,2,3,3,4],[3,4,5,8,6,6,7]))
結果是:顯示了一維的陣列hstack是隨意的。
[1 2 3 3 4 3 4 5 8 6 6 7]
範例三:
顯示我們的hstack必須要第二維度是一樣的:
print np.hstack(([1,2,3,3,4],[3,4,5,8,6,6,7])) print np.hstack(([[1,2,3],[2,3,4]],[[1,2],[2,3]]))
結果:
[1 2 3 3 4 3 4 5 8 6 6 7]
[[1 2 3 1 2][2 3 4 2 3]]
如果你把上面改成下面就會報錯了! ! !
print np.hstack(([1,2,3,3,4],[3,4,5,8,6,6,7])) print np.hstack(([[1,2,3],[2,3,4]],[[1,2]]))
(2)np.vstack()
函數原型:numpy.hstack(tup)
tup : sequence of ndarrays
The arrays must have the same shape along all but the first axis.1-D arrays must have the same length.
#表示我們除了第一個維度可以不一樣外,其他的維度上必須相同的shape。一維的陣列必須大小一樣。
範例一:
print np.vstack(([1,2,3],[3,4,3])) print np.vstack(([1,2,3],[2,3]))
但你要注意的是第二行是出錯的!
例子二:
print np.vstack(([[1,2,3],[3,4,3]],[[1,3,4],[2,4,5]])) print np.vstack(([[1,2,3],[3,4,3]],[[3,4],[4,5]]))
同樣的顯示了,如果我們的陣列的第二維不一樣所以出錯了。
print np.vstack(([[1,2,3],[3,4,3]],[[2,4,5]])) print np.vstack(([[1,2,3],[3,4,3]],[[4,5]]))
範例三:
我們傳入的是list:
import numpy as np arr1=np.array([[1,2],[2,4],[11,33],[2,44],[55,77],[11,22],[55,67],[67,89]]) arr11=np.array([[11,2,3],[22,3,4],[4,5,6]]) arr1_folds=np.array_split(arr1,3) print arr1_folds print np.vstack(arr1_folds)
結果:
[array([[ 1, 2] ,
[ 2, 4],
[11, 33]]), array([[ 2, 44],
# 1155, 77],# array([[55, 67],
[67, 89]])]
[[ 1 2]
[ 2 4]
[11 33]
[ 2 44]
## [55 77]
[11 22]
[55 67]
[67 89]]
以上是Python中的np.vstack()和np.hstack()怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!