本文簡要介紹 python 語言中 numpy.arctanh
的用法。
用法:
numpy.arctanh(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True [, signature, extobj ]) = <ufunc 'arctanh'>
逐元素的反雙曲正切。
- x: array_like
輸入數組。
- out: ndarray,None,或 ndarray 和 None 的元組,可選
存儲結果的位置。如果提供,它必須具有輸入廣播到的形狀。如果未提供或 None,則返回一個新分配的數組。元組(隻能作為關鍵字參數)的長度必須等於輸出的數量。
- where: 數組,可選
此條件通過輸入廣播。在條件為真的位置,out數組將設置為 ufunc 結果。在其他地方,out數組將保留其原始值。請注意,如果未初始化out數組是通過默認創建的
out=None
,其中條件為 False 的位置將保持未初始化狀態。- **kwargs:
對於其他僅關鍵字參數,請參閱 ufunc 文檔。
- out: ndarray 或標量
與 x 形狀相同的數組。如果 x 是標量,則這是一個標量。
參數:
返回:
注意:
arctanh
是一個多值函數:對於每個x有無數個數z這樣tanh(z) = x
.約定是返回z其虛部在[-pi/2, pi/2].對於實值輸入數據類型,
arctanh
總是返回真實的輸出。對於每個不能表示為實數或無窮大的值,它產生nan
並設置無效的浮點錯誤標誌。對於complex-valued 輸入,
arctanh
是具有分支切割的複雜分析函數[-1, -inf]和[1, inf]並且從上到上是連續的,從下到後是連續的。反雙曲正切也稱為阿坦或者
tanh^-1
.參考:
M. Abramowitz 和 I.A. Stegun,“數學函數手冊”,第 10 次印刷,1964 年,第 86 頁。https://personal.math.ubc.ca/~cbm/aands/page_86.htm
維基百科,“Inverse hyperbolic function”,https://en.wikipedia.org/wiki/Arctanh
1:
2:
例子:
>>> np.arctanh([0, -0.5]) array([ 0. , -0.54930614])
相關用法
- Python numpy arctan用法及代碼示例
- Python numpy arctan2用法及代碼示例
- Python numpy arccos用法及代碼示例
- Python numpy arccosh用法及代碼示例
- Python numpy arcsinh用法及代碼示例
- Python numpy arcsin用法及代碼示例
- Python numpy argpartition用法及代碼示例
- Python numpy array用法及代碼示例
- Python numpy array_repr用法及代碼示例
- Python numpy around用法及代碼示例
- Python numpy array2string用法及代碼示例
- Python numpy arange用法及代碼示例
- Python numpy argsort用法及代碼示例
- Python numpy array_equiv用法及代碼示例
- Python numpy array_str用法及代碼示例
- Python numpy array_equal用法及代碼示例
- Python numpy argmin用法及代碼示例
- Python numpy argmax用法及代碼示例
- Python numpy argwhere用法及代碼示例
- Python numpy array_split用法及代碼示例
- Python numpy asscalar用法及代碼示例
- Python numpy any用法及代碼示例
- Python numpy ascontiguousarray用法及代碼示例
- Python numpy asarray_chkfinite用法及代碼示例
- Python numpy all用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.arctanh。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。