在 Python 中将弧度数组转换为度数
要将弧度数组转换为度数,请在 Python Numpy 中使用 numpy.degrees() 方法。第一个参数是以弧度为单位的输入数组。第二个和第三个参数是可选的。第二个参数是 ndarray,结果存储到的位置。如果提供,则其形状必须与输入广播到的形状相同。如果未提供或为 None,则返回一个新分配的数组。
第三个参数是条件在输入上广播。在条件为 True 的位置,输出数组将设置为 ufunc 结果。在其他地方,输出数组将保留其原始值。
步骤
首先,导入所需的库 -
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*np.pi/6
要将弧度数组转换为度数,请在 Python Numpy 中使用 numpy.degrees() 方法。第一个参数是以弧度为单位的输入数组 -
print("\nRadian array to degrees...\n",np.degrees(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) # Radian array res = arr*np.pi/6 # To convert a radian array to degrees, use the numpy.degrees() method in Python Numpy print("\nRadian array to degrees...\n",np.degrees(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 Radian array to degrees... [ 0. 30. 60. 90. 120. 150. 180. 210. 240. 270. 300. 330.]
广告