本文简要介绍 python 语言中 numpy.setdiff1d
的用法。
用法:
numpy.setdiff1d(ar1, ar2, assume_unique=False)
求两个数组的集差。
返回中的唯一值ar1那些不在ar2.
- ar1: array_like
输入数组。
- ar2: array_like
输入比较数组。
- assume_unique: bool
如果为 True,则假定输入数组都是唯一的,这样可以加快计算速度。默认为假。
- setdiff1d: ndarray
ar1 中不存在于 ar2 中的一维值数组。结果在assume_unique=False 时排序,否则仅在输入排序时排序。
参数:
返回:
例子:
>>> a = np.array([1, 2, 3, 2, 4, 1]) >>> b = np.array([3, 4, 5, 6]) >>> np.setdiff1d(a, b) array([1, 2])
相关用法
- Python numpy seterr用法及代码示例
- Python numpy seterrobj用法及代码示例
- Python numpy set_printoptions用法及代码示例
- Python numpy setxor1d用法及代码示例
- Python numpy set_string_function用法及代码示例
- Python numpy seterrcall用法及代码示例
- Python numpy searchsorted用法及代码示例
- Python numpy select用法及代码示例
- Python numpy shape用法及代码示例
- Python numpy scimath.log用法及代码示例
- Python numpy signbit用法及代码示例
- Python numpy sort用法及代码示例
- Python numpy scimath.logn用法及代码示例
- Python numpy square用法及代码示例
- Python numpy std用法及代码示例
- Python numpy scimath.log2用法及代码示例
- Python numpy sum用法及代码示例
- Python numpy spacing用法及代码示例
- Python numpy squeeze用法及代码示例
- Python numpy scimath.arccos用法及代码示例
- Python numpy shares_memory用法及代码示例
- Python numpy s_用法及代码示例
- Python numpy swapaxes用法及代码示例
- Python numpy sctype2char用法及代码示例
- Python numpy show_config用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.setdiff1d。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。