本文简要介绍 python 语言中 numpy.union1d
的用法。
用法:
numpy.union1d(ar1, ar2)
找到两个数组的并集。
返回两个输入数组之一中的唯一、排序的值数组。
- ar1, ar2: array_like
输入数组。如果它们还不是一维的,它们将被展平。
- union1d: ndarray
输入数组的唯一排序联合。
参数:
返回:
例子:
>>> np.union1d([-1, 0, 1], [-2, 0, 2]) array([-2, -1, 0, 1, 2])
要找到两个以上数组的并集,请使用 functools.reduce:
>>> from functools import reduce >>> reduce(np.union1d, ([1, 3, 4, 3], [3, 1, 2, 1], [6, 3, 4, 2])) array([1, 2, 3, 4, 6])
相关用法
- Python numpy unique用法及代码示例
- Python numpy unpackbits用法及代码示例
- Python numpy unravel_index用法及代码示例
- Python numpy unwrap用法及代码示例
- Python numpy ufunc.at用法及代码示例
- Python numpy ufunc.outer用法及代码示例
- Python numpy ufunc.ntypes用法及代码示例
- Python numpy ufunc.identity用法及代码示例
- Python numpy ufunc.reduce用法及代码示例
- Python numpy ufunc.nin用法及代码示例
- Python numpy ufunc.nout用法及代码示例
- Python numpy ufunc.reduceat用法及代码示例
- Python numpy ufunc.nargs用法及代码示例
- Python numpy ufunc.types用法及代码示例
- Python numpy ufunc.signature用法及代码示例
- Python numpy ufunc.accumulate用法及代码示例
- Python numpy RandomState.standard_exponential用法及代码示例
- Python numpy hamming用法及代码示例
- Python numpy legendre.legint用法及代码示例
- Python numpy chararray.ndim用法及代码示例
- Python numpy chebyshev.chebsub用法及代码示例
- Python numpy chararray.nbytes用法及代码示例
- Python numpy ma.indices用法及代码示例
- Python numpy matrix.A1用法及代码示例
- Python numpy MaskedArray.var用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.union1d。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。