This is documentation for an old release of NumPy (version 1.3.). Read this page in the documentation of the latest stable release (version > 1.17).
Return True where x is -infinity, and False otherwise.
Parameters: | x : array_like
y : array_like
|
---|---|
Returns: | y : ndarray
|
Examples
>>> np.isneginf([-np.inf, 0., np.inf])
array([ True, False, False], dtype=bool)