在 Python 中将角度从度数转换为弧度
要将角度从度数转换为弧度,请在 Python Numpy 中使用 numpy.radians() 方法。该方法返回相应的弧度值。如果 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.radians() 方法。该方法返回相应的弧度值。如果 x 是标量,则这是一个标量 -
print("\nDegree array to radians...\n",np.radians(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 angles from degrees to radians, use the numpy.radians() method in Python Numpy # The method returns the corresponding radian values. This is a scalar if x is a scalar. print("\nDegree array to radians...\n",np.radians(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 radians... [0. 0.52359878 1.04719755 1.57079633 2.0943951 2.61799388 3.14159265 3.66519143 4.1887902 4.71238898 5.23598776 5.75958653]
广告