原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.degrees.html
校对:(虚位以待)
numpy.
degrees
(x[, out]) = <ufunc 'degrees'>将角度从弧度转换为度。
参数: | x:array_like
out:ndarray,可选
|
---|---|
返回: | y:ndarray的浮点数
|
也可以看看
rad2deg
例子
将弧度数组转换为度数
>>> rad = np.arange(12.)*np.pi/6
>>> np.degrees(rad)
array([ 0., 30., 60., 90., 120., 150., 180., 210., 240.,
270., 300., 330.])
>>> out = np.zeros((rad.shape))
>>> r = degrees(rad, out)
>>> np.all(r == out)
True