原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.not_equal.html
校对:(虚位以待)
numpy.
not_equal
(x1, x2[, out]) = <ufunc 'not_equal'>元素方式返回(x1!= x2)。
参数: | x1,x2:array_like
out:ndarray,可选
|
---|---|
返回: | not_equal:ndarray bool,scalar bool
|
也可以看看
例子
>>> np.not_equal([1.,2.], [1., 3.])
array([False, True], dtype=bool)
>>> np.not_equal([1, 2], [[1, 3],[1, 4]])
array([[False, True],
[False, True]], dtype=bool)