numpy.degrees¶
-
numpy.
degrees
(x[, out]) = <ufunc 'degrees'>¶ 将角度从弧度转换为度。
参数: x:array_like
输入数组,以弧度表示。
out:ndarray,可选
输出与x形状相同的数组。
返回: y:ndarray的浮点数
相应的度值;如果提供了out,那么它是对它的引用。
也可以看看
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