Python numpy.radians()

Python numpy.radians()

numpy.radians()是一个数学函数,帮助用户将角度从度数转换为弧度。

语法 : numpy.radians(x[, out]) = ufunc ‘radians’)
参数 :

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

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

**代码 #1 : **

# Python3 program explaining
# degrees() function
  
import numpy as np
import math
  
in_array = np.arange(10.) * 90
print ("Degree values : \n", in_array)
  
radian_Values = np.radians(in_array)
print ("\nRadian values : \n", radian_Values)

输出 :

Degree values : 
 [   0.   90.  180.  270.  360.  450.  540.  630.  720.  810.]

Radian values : 
 [  0.           1.57079633   3.14159265   4.71238898   6.28318531
   7.85398163   9.42477796  10.99557429  12.56637061  14.13716694]

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

参数 :

array : [array_like] 元素的单位是弧度。

out : [ndaaray, optional] 输出与x相同形状的数组。

2pi 弧度 = 36o 度

返回 : 相应的角度,单位为弧度。

代码 #2 : deg2rad() 等同于radians()

# Python3 program explaining
# rad2deg() function
  
import numpy as np
import math
  
degree = np.arange(10.) * 90
print ("Degree values : \n", degree)
  
radian = np.deg2rad(degree)
print ("\nradian values : \n", radian)

输出 :

Degree values : 
 [   0.   90.  180.  270.  360.  450.  540.  630.  720.  810.]

radian values : 
 [  0.           1.57079633   3.14159265   4.71238898   6.28318531
   7.85398163   9.42477796  10.99557429  12.56637061  14.13716694]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程