逻辑函数#

真值测试#

all(a[, axis, out, keepdims, where])

测试给定轴上所有数组元素是否计算结果为 True。

any(a[, axis, out, keepdims, where])

测试给定轴上任何数组元素是否计算结果为 True。

数组内容#

isfinite(x, /[, out, where, casting, order, ...])

逐元素测试是否为有限数(非无穷大和非 NaN)。

isinf(x, /[, out, where, casting, order, ...])

逐元素测试是否为正无穷大或负无穷大。

isnan(x, /[, out, where, casting, order, ...])

逐元素测试是否为 NaN,并将结果作为布尔数组返回。

isnat(x, /[, out, where, casting, order, ...])

逐元素测试是否为 NaT(非时间),并将结果作为布尔数组返回。

isneginf(x[, out])

逐元素测试是否为负无穷大,将结果作为布尔数组返回。

isposinf(x[, out])

逐元素测试是否为正无穷大,将结果作为布尔数组返回。

数组类型测试#

iscomplex(x)

返回一个布尔数组,如果输入元素是复数则为 True。

iscomplexobj(x)

检查复数类型或复数数组。

isfortran(a)

检查数组是否为 Fortran 连续但为 C 连续。

isreal(x)

返回一个布尔数组,如果输入元素是实数则为 True。

isrealobj(x)

如果 x 不是复数类型或复数数组,则返回 True。

isscalar(element)

如果element的类型是标量类型,则返回 True。

逻辑运算#

logical_and(x1, x2, /[, out, where, ...])

逐元素计算 x1 和 x2 的逻辑与。

logical_or(x1, x2, /[, out, where, casting, ...])

逐元素计算 x1 和 x2 的逻辑或。

logical_not(x, /[, out, where, casting, ...])

逐元素计算 x 的逻辑非。

logical_xor(x1, x2, /[, out, where, ...])

逐元素计算 x1 和 x2 的逻辑异或。

比较#

allclose(a, b[, rtol, atol, equal_nan])

如果两个数组在容差范围内逐元素相等,则返回 True。

isclose(a, b[, rtol, atol, equal_nan])

返回一个布尔数组,其中两个数组在容差范围内逐元素相等。

array_equal(a1, a2[, equal_nan])

如果两个数组具有相同的形状和元素,则为 True,否则为 False。

array_equiv(a1, a2)

如果输入数组的形状一致且所有元素都相等,则返回 True。

greater(x1, x2, /[, out, where, casting, ...])

逐元素返回 (x1 > x2) 的真值。

greater_equal(x1, x2, /[, out, where, ...])

逐元素返回 (x1 >= x2) 的真值。

less(x1, x2, /[, out, where, casting, ...])

逐元素返回 (x1 < x2) 的真值。

less_equal(x1, x2, /[, out, where, casting, ...])

逐元素返回 (x1 <= x2) 的真值。

equal(x1, x2, /[, out, where, casting, ...])

逐元素返回 (x1 == x2)。

not_equal(x1, x2, /[, out, where, casting, ...])

逐元素返回 (x1 != x2)。