scipy.special.sindg#

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

正弦给定在角度 x 单位为度。

参数:
xarray_like

角度, 单位为度。

outndarray, optional

可选的函数结果输出阵列。

返回:
标量或 ndarray

正弦在输入。

另请参见

cosdg, tandg, cotdg

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

它比直接使用正弦更准确。

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