Module ndarray_logical

Module ndarray_logical 

Source

Enums§

LogicalError

Functions§

all
Returns True if all array elements are neither zero, infinite, subnormal, or NaN. Subnormal values are those between ‘0’ and f32 or f64::MIN_POSITIVE Returns False otherwise
any
Tests whether any array element evaluates to True Returns true if the number is neither zero, infinite, subnormal, or NaN. Subnormal values are those between ‘0’ and ‘f32 or f64::MIN_POSITIVE’ Returns false for empty arrays
axis_all
Tests whether all array elements along a given axis evaluates to True
axis_any
Tests whether any array element along a given axis evaluates to True
axis_is_inf
Tests whether any array element along a given axis is inf
axis_is_nan
Tests whether any array element along a given axis is NaN
is_inf
Tests element-wise for inf elements in an array. Returns True if there are NaN, False otherwise
is_nan
Tests element-wise for NaN elements in an array. Returns True if there are NaN, False otherwise