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