本文簡要介紹 python 語言中 numpy.isposinf
的用法。
用法:
numpy.isposinf(x, out=None)
逐元素測試正無窮大,將結果作為 bool 數組返回。
- x: array_like
輸入數組。
- out: 數組,可選
存儲結果的位置。如果提供,它必須具有輸入廣播到的形狀。如果未提供或 None,則返回一個新分配的布爾數組。
- out: ndarray
與輸入具有相同維度的布爾數組。如果未提供第二個參數,則返回一個布爾數組,其中輸入的相應元素為正無窮大時的值為 True,而輸入的元素不是正無窮大時的值為 False。
如果提供了第二個參數,則結果存儲在那裏。如果該數組的類型是數字類型,則結果表示為 0 和 1,如果類型是布爾值,則表示為 False 和 True。然後返回值 out 是對該數組的引用。
參數:
返回:
注意:
NumPy 使用 IEEE 二進製浮點算術標準 (IEEE 754)。
如果在 x 是標量輸入時也提供了第二個參數,如果第一個和第二個參數具有不同的形狀,或者如果第一個參數具有複數值,則會導致錯誤
例子:
>>> np.isposinf(np.PINF) True >>> np.isposinf(np.inf) True >>> np.isposinf(np.NINF) False >>> np.isposinf([-np.inf, 0., np.inf]) array([False, False, True])
>>> x = np.array([-np.inf, 0., np.inf]) >>> y = np.array([2, 2, 2]) >>> np.isposinf(x, y) array([0, 0, 1]) >>> y array([0, 0, 1])
相關用法
- Python numpy isclose用法及代碼示例
- Python numpy issctype用法及代碼示例
- Python numpy isnat用法及代碼示例
- Python numpy is_busday用法及代碼示例
- Python numpy issubdtype用法及代碼示例
- Python numpy issubclass_用法及代碼示例
- Python numpy issubsctype用法及代碼示例
- Python numpy iscomplexobj用法及代碼示例
- Python numpy isfinite用法及代碼示例
- Python numpy iscomplex用法及代碼示例
- Python numpy isin用法及代碼示例
- Python numpy isinf用法及代碼示例
- Python numpy isrealobj用法及代碼示例
- Python numpy isscalar用法及代碼示例
- Python numpy isneginf用法及代碼示例
- Python numpy isreal用法及代碼示例
- Python numpy isnan用法及代碼示例
- Python numpy isfortran用法及代碼示例
- Python numpy interp用法及代碼示例
- Python numpy iinfo用法及代碼示例
- Python numpy in1d用法及代碼示例
- Python numpy indices用法及代碼示例
- Python numpy ix_用法及代碼示例
- Python numpy imag用法及代碼示例
- Python numpy insert用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.isposinf。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。