当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy.degrees()、rad2deg()用法及代码示例


numpy.degrees(x [,out])= ufunc‘degrees’):此数学函数可帮助用户将角度从弧度转换为度。

参数:

array:[数组]元素以弧度为单位。
out :[ndaaray,可选]输出形状与x相同的数组。
2pi弧度= 360度


返回:用度值代替弧度值的数组。


代码1:工作

# Python3 program explaining 
# degrees() function 
import numpy as np 
import math 
  
in_array = [0, math.pi / 2, np.pi / 3, np.pi] 
print ("Radian values:\n", in_array) 
  
degree_Values = np.degrees(in_array) 
print ("\nDegree values:\n", degree_Values)

输出:

Radian values:
 [0, 1.5707963267948966, 1.0471975511965976, 3.141592653589793]

Degree values:
 [   0.   90.   60.  180.]

numpy.rad2deg(x [,out])= ufunc‘rad2deg’):此数学函数可帮助用户将角度从弧度转换为度。

参数:

array:[数组]元素以弧度为单位。
out :[ndaaray,可选]输出形状与x相同的数组。
2pi弧度= 36o度

返回:相应角度的度数。


代码#2:rad2deg()等效于degree()

# Python3 program explaining 
# rad2deg() function 
  
import numpy as np 
import math 
  
in_array = [0, math.pi / 2, np.pi / 3, np.pi] 
print ("Radian values:\n", in_array) 
  
out_Values = np.rad2deg(in_array) 
print ("\nDegree values:\n", out_Values)

输出:

Radian values:
 [0, 1.5707963267948966, 1.0471975511965976, 3.141592653589793]

Degree values:
 [   0.   90.   60.  180.]


参考文献:https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.degrees.html#numpy.degrees



相关用法


注:本文由纯净天空筛选整理自Mohit Gupta_OMG 大神的英文原创作品 numpy.degrees() and rad2deg() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。