jax.numpy.isnan
Contents
jax.numpy.isnan#
- jax.numpy.isnan(x,/)[source]#
Returns a boolean array indicating whether each element of input is
NaN.JAX implementation of
numpy.isnan.- Parameters:
x (ArrayLike) – input array or scalar.
- Returns:
A boolean array of same shape as
xcontainingTruewherexisnot a number (i.e.NaN) andFalseotherwise.- Return type:
See also
jax.numpy.isfinite(): Returns a boolean array indicating whether eachelement of input is finite.jax.numpy.isinf(): Returns a boolean array indicating whether eachelement of input is either positive or negative infinity.jax.numpy.isposinf(): Returns a boolean array indicating whether eachelement of input is positive infinity.jax.numpy.isneginf(): Returns a boolean array indicating whether eachelement of input is negative infinity.
Examples
>>>jnp.isnan(6)Array(False, dtype=bool, weak_type=True)>>>x=jnp.array([2,1+4j,jnp.inf,jnp.nan])>>>jnp.isnan(x)Array([False, False, False, True], dtype=bool)
Contents
