當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python numpy positive用法及代碼示例


本文簡要介紹 python 語言中 numpy.positive 的用法。

用法:

numpy.positive(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True [, signature, extobj ]) = <ufunc 'positive'>

數值正數,逐元素。

參數

x 數組 或標量

輸入數組。

返回

y ndarray 或標量

返回的數組或標量:y=+x.這是一個標量,如果x是一個標量。

注意

等效於 x.copy(),但隻為支持算術的類型定義。

例子

>>> x1 = np.array(([1., -1.]))
>>> np.positive(x1)
array([ 1., -1.])

一元 + 運算符可用作 ndarray 上 np.positive 的簡寫。

>>> x1 = np.array(([1., -1.]))
>>> +x1
array([ 1., -1.])

相關用法


注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.positive。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。