本文簡要介紹 python 語言中 numpy.arctan
的用法。
用法:
numpy.arctan(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True [, signature, extobj ]) = <ufunc 'arctan'>
三角反正切,逐元素。
tan 的倒數,因此如果
y = tan(x)
那麽x = arctan(y)
。- x: array_like
- out: ndarray,None,或 ndarray 和 None 的元組,可選
存儲結果的位置。如果提供,它必須具有輸入廣播到的形狀。如果未提供或 None,則返回一個新分配的數組。元組(隻能作為關鍵字參數)的長度必須等於輸出的數量。
- where: 數組,可選
此條件通過輸入廣播。在條件為真的位置,out數組將設置為 ufunc 結果。在其他地方,out數組將保留其原始值。請注意,如果未初始化out數組是通過默認創建的
out=None
,其中條件為 False 的位置將保持未初始化狀態。- **kwargs:
對於其他僅關鍵字參數,請參閱 ufunc 文檔。
- out: ndarray 或標量
Out 的形狀與x.它的真正部分在
[-pi/2, pi/2]
(arctan(+/-inf)
返回+/-pi/2
)。這是一個標量,如果x是一個標量。
參數:
返回:
注意:
arctan
是一個multi-valued 函數:對於每個x有無數個數z這樣 tan(z) =x.約定是返回角度z其實部在 [-pi/2, pi/2]。對於實值輸入數據類型,
arctan
總是返回真實的輸出。對於每個不能表示為實數或無窮大的值,它產生nan
並設置無效的浮點錯誤標誌。對於complex-valued 輸入,
arctan
是一個複解析函數,具有[1j, infj
] 和[-1j, -infj
] 作為分支切割,並且從前者的左側和後者的右側連續。反正切也稱為 atan 或 tan^{-1}。
參考:
Abramowitz, M. 和 Stegun, I. A.,數學函數手冊,第 10 次印刷,紐約:多佛,1964 年,第 79 頁。https://personal.math.ubc.ca/~cbm/aands/page_79.htm
例子:
我們期望 0 的反正切為 0,而 1 的反正切為 pi/4:
>>> np.arctan([0, 1]) array([ 0. , 0.78539816])
>>> np.pi/4 0.78539816339744828
繪製 arctan:
>>> import matplotlib.pyplot as plt >>> x = np.linspace(-10, 10) >>> plt.plot(x, np.arctan(x)) >>> plt.axis('tight') >>> plt.show()
相關用法
- Python numpy arctan2用法及代碼示例
- Python numpy arctanh用法及代碼示例
- 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.arctan。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。