其他分享
首页 > 其他分享> > np.concatenate

np.concatenate

作者:互联网

目录


一、定义

np.concatenate()连接沿现有轴的数组

函数用于沿指定轴连接相同形状的两个或多个数组。


np.concatenate((a1, a2, ...), axis)

参数:


实例:

import numpy as np

a = np.array([[1, 2] , [3, 4]])
print(a)

b = np.array([[5, 6], [7, 8]])
print(b)

输出结果:

[[1 2]
 [3 4]]


[[5 6]
 [7 8]]

二、沿轴 0 连接两个数组

print(np.concatenate((a, b)))

输出结果:

[[1 2]
 [3 4]
 [5 6]
 [7 8]]

三、沿轴 1 连接两个数组

print (np.concatenate((a,b),axis = 1))

输出结果:

[[1 2 5 6]
 [3 4 7 8]]

标签:concatenate,沿轴,print,数组,np,连接
来源: https://www.cnblogs.com/keye/p/15383112.html