scipy.special.tandg#

scipy.special.tandg(x, out=None) = <ufunc 'tandg'>#

给定角度 x 的正切值(以度为单位)。

参数:
xarray_like

角度,以度为单位给出。

ndarray,可选

函数结果的可选输出数组。

返回:
标量或ndarray

输入处的切线。

参见

sindg, cosdg, cotdg

示例

>>> import numpy as np
>>> import scipy.special as sc

使用它比直接使用切线更准确。

>>> x = 180 * np.arange(3)
>>> sc.tandg(x)
array([0., 0., 0.])
>>> np.tan(x * np.pi / 180)
array([ 0.0000000e+00, -1.2246468e-16, -2.4492936e-16])