在 Python 中获取数组元素的三角反正弦
反正弦是一个多值函数:对于每个 x,都有无限多个数字 z 使得 sin(z) = x。惯例是返回实部位于 [-pi/2, pi/2] 范围内的角度 z。反正弦也称为 asin 或 sin^{-1}。
对于实数值输入数据类型,反正弦始终返回实数输出。对于每个不能表示为实数或无穷大的值,它会产生 nan 并设置无效浮点数错误标志。
对于复数值输入,反正弦是一个复解析函数,按照惯例,它具有分支切割 [-inf, -1] 和 [1, inf],并且在前者上从上方连续,在后者上从下方连续。
要获取数组元素的三角反正弦,请在 Python Numpy 中使用 numpy.arcsin() 方法。该方法返回第一个参数 x 的每个元素的正弦值。第一个参数 x 是单位圆上的 y 坐标。第二个和第三个参数是可选的。
第二个参数是 ndarray,结果存储到其中的位置。如果提供,它必须具有输入广播到的形状。如果未提供或为 None,则返回一个新分配的数组。元组(仅可能作为关键字参数)的长度必须等于输出的数量。第三个参数是广播到输入上的条件。
步骤
首先,导入所需的库 -
import numpy as np
获取数组元素的三角反正弦。使用 numpy.array() 方法创建数组 -
arr = np.array((1, -1, 0, 0.3))
显示我们的数组 -
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)
查找数组元素的三角反正弦 -
print("\nResult...",np.arcsin(arr))
示例
import numpy as np # To get the Trigonometric inverse sine of the array elements, use the numpy.arcsin() method in Python Numpy # The method returns the sine of each element of the 1st parameter x. print("Get the Trigonometric inverse sine of the array elements...") # Array created using the numpy.array() method arr = np.array((1, -1, 0, 0.3)) # 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) # Finding the Trigonometric inverse sine of the array elements print("\nResult...",np.arcsin(arr))
输出
Get the Trigonometric inverse sine of the array elements... Array... [ 1. -1. 0. 0.3] Our Array type... float64 Our Array Dimensions... 1 Number of elements... 4 Result... [ 1.57079633 -1.57079633 0. 0.30469265]
广告