使用Python获取以度数表示的角度数组的三角余弦值
要查找以度数表示的角度数组的三角余弦值,请在Python NumPy中使用numpy.cos()方法。该方法返回第一个参数x的每个元素的余弦值。第一个参数x是以弧度表示的角度(2pi表示360度)。这里,它是一个角度数组。第二个和第三个参数是可选的。
第二个参数是一个ndarray,结果存储到其中的位置。如果提供,则其形状必须与输入广播到的形状相同。如果未提供或为None,则返回一个新分配的数组。元组的长度必须等于输出的数量。
第三个参数是条件,在输入上进行广播。在条件为True的位置,out数组将设置为ufunc结果。在其他位置,out数组将保留其原始值。请注意,如果通过默认的out=None创建未初始化的out数组,则其中条件为False的位置将保持未初始化状态。
步骤
首先,导入所需的库:
import numpy as np
以下是角度数组,求cos 0、cos 30、cos 45、cos 60、cos 90、cos 180:
arr = np.array((0., 30., 45., 60., 90., 180.))
显示我们的数组:
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)
要查找以度数表示的角度数组的余弦值,请在Python NumPy中使用cos()方法:
print("\nResult...",np.cos(arr * np.pi / 180. ))
示例
import numpy as np # To find the Trigonometric cosine of an array of angles given in degrees, use the numpy.cos() method in Python Numpy # The method returns the cosine of each element of the 1st parameter x. print("The Trigonometric cosine of an array of angles...") # Array of angles # finding cos 0, cos 30, cos 45, cos 60, cos 90, cos 180 arr = np.array((0., 30., 45., 60., 90., 180.)) # 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) # To find the cosines of an array of angles given in degrees, use the cos() method in Python Numpy print("\nResult...",np.cos(arr * np.pi / 180. ))
输出
The Trigonometric cosine of an array of angles... Array... [ 0. 30. 45. 60. 90. 180.] Our Array type... float64 Our Array Dimensions... 1 Number of elements... 6 Result... [ 1.00000000e+00 8.66025404e-01 7.07106781e-01 5.00000000e-01 6.12323400e-17 -1.00000000e+00]
广告