我有两个2D numpy数组,我想在其他数据的末尾添加一个。
Example:
`
My arrays are a & b:
a = [[ 1 , 2],
[ 2 , 4],
[ 6 , 8]]
b = [[ 3 , 5],
[ 7 , 4]]
The result will be:
C = [[ 1 , 2],
[ 2 , 4],
[ 6 , 8],
[ 3 , 5],
[ 7 , 4]]
`
答案 0 :(得分:2)
您可以使用np.concatenate()
:
c = np.concatenate((a, b), axis=0)