當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。