Python numpy.union1d()函数

Python numpy.union1d()函数

numpy.union1d()函数找到两个数组的联合,并返回两个输入数组中的唯一的、经过排序的数组值。

语法: numpy.union1d(arr1, arr2)

参数 :
arr1, arr2 : [array_like] 输入数组。

返回: [ndarray] 唯一的、经过排序的输入数组的联合。

代码#1:

# Python program explaining
# numpy.union1d() function
    
# importing numpy as geek 
import numpy as geek 
   
arr1 = [-1, 0, 1]
arr2 = [-2, 0, 2]
   
gfg = geek.union1d(arr1, arr2)
   
print (gfg)

输出 :

[-2 -1  0  1  2]

代码#2:

# Python program explaining
# numpy.union1d() function
    
# importing numpy as geek 
import numpy as geek 
   
arr1 = [-3, -2, -1, 0, 1, 2, 3]
arr2 = [-5, -4, -3, 0, 3, 4, 5]
   
gfg = geek.union1d(arr1, arr2)
   
print (gfg)

输出 :

[-5 -4 -3 -2 -1  0  1  2  3  4  5]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程