Search
Search Results
Search finished, found 12 page(s) matching the search query.
- numpy.isposinf
...NumPy reference Routines and objects by topic Logic functions numpy.isposinf...
- numpy.isposinf (Python function, in numpy.isposinf)
- NumPy 1.13.0 Release Notes
...New PyArray_MapIterArrayCopyIfOverlap added to NumPy C-API. See below for details. Deprecations Calling np.fix, np.isposinf, and np.isneginf with f(x, y=out) is deprecated - the argument should be passed as f(x, out=out), which matches...
- NumPy 1.25.0 Release Notes
...disabled dispatching with __array_function__. (gh-23376) Support for y= as an alias of out= has been removed. The fix, isposinf and isneginf functions allowed using y= as a (deprecated) alias for out=. This is no longer supported. (gh-2337...
- numpy.isfinite
...nfinity, negative infinity, or NaN; false otherwise. This is a scalar if x is a scalar. See also isinf, isneginf, isposinf, isnan Notes Not a Number, positive infinity and negative infinity are considered to be non-finite. NumPy use...
- numpy.isinf
...where x is positive or negative infinity, false otherwise. This is a scalar if x is a scalar. See also isneginf, isposinf, isnan, isfinite Notes NumPy uses the IEEE Standard for Binary Floating-Point for Arithmetic (IEEE 754). Erro...
- numpy.isnan
...ndarray or boolTrue where x is NaN, false otherwise. This is a scalar if x is a scalar. See also isinf, isneginf, isposinf, isfinite, isnat Notes NumPy uses the IEEE Standard for Binary Floating-Point for Arithmetic (IEEE 754). This...
- numpy.isnat
...or boolTrue where x is NaT, false otherwise. This is a scalar if x is a scalar. See also isnan, isinf, isneginf, isposinf, isfinite Examples Try it in your browser! >>> import numpy as np >>> np.isnat(np.datetime64("NaT")) True >>...
- numpy.isneginf
...e type is boolean then as False and True. The return value out is then a reference to that array. See also isinf, isposinf, isnan, isfinite Notes NumPy uses the IEEE Standard for Binary Floating-Point for Arithmetic (IEEE 754). Erro...
- numpy.isposinf
...NumPy reference Routines and objects by topic Logic functions numpy.isposinf...
- numpy.nan_to_num
...lso isinfShows which elements are positive or negative infinity. isneginfShows which elements are negative infinity. isposinfShows which elements are positive infinity. isnanShows which elements are Not a Number (NaN). isfiniteShows wh...
- Constants
...ng point representation of positive infinity. See Also isinf : Shows which elements are positive or negative infinity isposinf : Shows which elements are positive infinity isneginf : Shows which elements are negative infinity isnan : Show...