使用Python deg2rad()函数将角度从度转换为弧度
要将度数组转换为弧度,请在 Python Numpy 中使用 numpy.deg2rad() 方法。该方法返回相应的弧度角。如果 x 是标量,则这是一个标量。第一个参数是以度为单位的输入角。第二个和第三个参数是可选的。
第二个参数是 ndarray,结果存储到的位置。如果提供,则其形状必须与输入广播到的形状相同。如果没有提供或为 None,则返回一个新分配的数组。
第三个参数是对输入进行广播的条件。在条件为 True 的位置,out 数组将设置为 ufunc 结果。在其他位置,out 数组将保留其原始值。
步骤
首先,导入所需的库:
import numpy as np
创建数组:
arr = np.arange(12.)
显示我们的数组:
print("Array...\n",arr)
获取数据类型:
print("\nArray datatype...\n",arr.dtype)
获取数组的维度:
print("\nArray Dimensions...\n",arr.ndim)
获取数组的元素个数:
print("\nNumber of elements in the Array...\n",arr.size)
度数组:
res = arr*30
要将度数组转换为弧度,请在 Python Numpy 中使用 numpy.deg2rad() 方法。该方法返回相应的弧度角。如果 x 是标量,则这是一个标量:
print("\nDegree array to degrees...\n",np.deg2rad(res))
示例
import numpy as np # Create an Array arr = np.arange(12.) # Display the array print("Array...\n", arr) # Get the type of the array print("\nOur Array type...\n", arr.dtype) # Get the dimensions of the Array print("\nOur Array Dimensions...\n",arr.ndim) # Get the number of elements in the Array print("\nNumber of elements...\n", arr.size) # Degree array res = arr*30 # To convert a degree array to radians, use the numpy.deg2rad() method in Python Numpy # The method returns the corresponding angle in radians. This is a scalar if x is a scalar. print("\nDegree array to degrees...\n",np.deg2rad(res))
输出
Array... [ 0. 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11.] Our Array type... float64 Our Array Dimensions... 1 Number of elements... 12 Degree array to degrees... [0. 0.52359878 1.04719755 1.57079633 2.0943951 2.61799388 3.14159265 3.66519143 4.1887902 4.71238898 5.23598776 5.75958653]
广告