用法:
dask.array.arctan(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) = <ufunc 'arctan'>
此文檔字符串是從 numpy.arctan 複製的。
可能存在與 Dask 版本的一些不一致之處。
三角反正切,逐元素。
tan 的倒數,因此如果
y = tan(x)
那麽x = arctan(y)
。- x:array_like
- out:ndarray,None,或 ndarray 和 None 的元組,可選
存儲結果的位置。如果提供,它必須具有輸入廣播到的形狀。如果未提供或 None,則返回一個新分配的數組。元組(隻能作為關鍵字參數)的長度必須等於輸出的數量。
- where:數組,可選
此條件通過輸入廣播。在條件為 True 的位置,
out
數組將設置為 ufunc 結果。在其他地方,out
數組將保留其原始值。請注意,如果通過默認out=None
創建未初始化的out
數組,則其中條件為 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
並設置invalid
浮點錯誤標誌。對於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 dask.array.arctanh用法及代碼示例
- Python dask.array.arctan2用法及代碼示例
- Python dask.array.arcsin用法及代碼示例
- Python dask.array.arccos用法及代碼示例
- Python dask.array.arccosh用法及代碼示例
- Python dask.array.arcsinh用法及代碼示例
- Python dask.array.around用法及代碼示例
- Python dask.array.array用法及代碼示例
- Python dask.array.argtopk用法及代碼示例
- Python dask.array.argmin用法及代碼示例
- Python dask.array.argmax用法及代碼示例
- Python dask.array.argwhere用法及代碼示例
- Python dask.array.asanyarray用法及代碼示例
- Python dask.array.all用法及代碼示例
- Python dask.array.atleast_3d用法及代碼示例
- Python dask.array.allclose用法及代碼示例
- Python dask.array.apply_over_axes用法及代碼示例
- Python dask.array.average用法及代碼示例
- Python dask.array.apply_along_axis用法及代碼示例
- Python dask.array.atleast_1d用法及代碼示例
注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 dask.array.arctan。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。