Check if the input is not a complex number or an array containing complex elements.
JAX implementation of numpy.isrealobj()
.
The function evaluates based on input type rather than value. Inputs with zero imaginary parts are still considered complex.
x (Any) – input object to check.
False if x
is a complex number or an array containing at least one complex element, True otherwise.
Examples
>>> jnp.isrealobj(0) True >>> jnp.isrealobj(1.2) True >>> jnp.isrealobj(jnp.array([1, 2])) True >>> jnp.isrealobj(1+2j) False >>> jnp.isrealobj(jnp.array([0, 1+2j])) False
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4