baybe.parameters.utils.is_inactive

baybe.parameters.utils.is_inactive(x: _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes], /, lower_threshold: _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes], upper_threshold: _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes])[source]

Check if the given values are inactive (i.e. can be treated as zero).

A value is considered inactive when at least one of the following is true: * The value lies in the open interval specified by the given thresholds. * The value is zero.

Parameters:
Return type:

ndarray

Returns:

A Boolean-valued numpy array indicating which elements are inactive.