scipy.special.sindg#

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

以度为单位给出的角度 x 的正弦值。

参数:
xarray_like

角度,以度为单位给出。

outndarray, 可选

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

返回:
标量或 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])