逻辑函数

真值测试

方法描述
allopen in new window(a[, axis, out, keepdims])测试是否沿给定轴的所有数组元素求值为True。
anyopen in new window(a[, axis, out, keepdims])测试沿给定轴的任何数组元素的求值是否为True。

数组内容

方法描述
isfiniteopen in new window(x, /[, out, where, casting, order, …])逐一测试有限性(不是无穷大还是不是数字)。
isinfopen in new window(x, /[, out, where, casting, order, …])逐元素测试正无穷大或负无穷大。
isnanopen in new window(x, /[, out, where, casting, order, …])对NaN逐个元素进行测试,并将结果作为布尔数组返回。
isnatopen in new window(x, /[, out, where, casting, order, …])对NaT(不是时间)逐个元素进行测试,然后将结果作为布尔数组返回。
isneginfopen in new window(x[, out])逐项测试负无穷大,将结果作为布尔数组返回。
isposinfopen in new window(x[, out])对正无穷大逐个元素进行测试,以布尔数组形式返回结果。

数组类型测试

方法描述
iscomplexopen in new window(x)返回布尔数组,如果输入元素复杂,则返回True。
iscomplexobjopen in new window(x)检查复杂类型或复杂数字数组。
isfortranopen in new window(a)检查数组是否是Fortran连续的,而不是C连续的。
isrealopen in new window(x)返回布尔数组,如果输入元素为实,则返回True。
isrealobjopen in new window(x)如果x是非复数类型或复数数组,则返回True。
isscalaropen in new window(num)如果num的类型是标量类型,则返回True。

逻辑运算

方法描述
logical_andopen in new window(x1, x2, /[, out, where, …])按元素计算x1和x2的真值。
logical_oropen in new window(x1, x2, /[, out, where, casting, …])按元素计算x1或x2的真值。
logical_notopen in new window(x, /[, out, where, casting, …])计算非x元素的真值。
logical_xoropen in new window(x1, x2, /[, out, where, …])按元素计算x1 XOR x2的真值。

对照

方法描述
allcloseopen in new window(a, b[, rtol, atol, equal_nan])如果两个数组在公差范围内按元素方式相等,则返回True。
iscloseopen in new window(a, b[, rtol, atol, equal_nan])返回一个布尔数组,其中两个数组在公差范围内按元素方式相等。
array_equalopen in new window(a1, a2)如果两个数组具有相同的形状和元素,则为True,否则为False。
array_equivopen in new window(a1, a2)如果输入数组的形状一致且所有元素均相等,则返回True。
greateropen in new window(x1, x2, /[, out, where, casting, …])按元素返回(x1 > x2)的真值。
greater_equalopen in new window(x1, x2, /[, out, where, …])按元素返回(x1 >= x2)的真值。
lessopen in new window(x1, x2, /[, out, where, casting, …])按元素返回(x1 < x2)的真值。
less_equalopen in new window(x1, x2, /[, out, where, casting, …])按元素返回(x1 =< x2)的真值。
equalopen in new window(x1, x2, /[, out, where, casting, …])按元素返回(x1 == x2)。
not_equalopen in new window(x1, x2, /[, out, where, casting, …])按元素返回(x1 != x2)。