Python Math asin() 函数
Python Math asin() 返回x的反正弦弧度值。
Python Math asin() 语法
以下是 asin() 方法的语法:
import math
math.asin(x)
注意:asin()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。
Python Math asin() 参数
- x : -1到1之间的数值。如果x是大于1,会产生一个错误。
Python Math asin() 返回值
返回x的反正弦弧度值。
Python Math asin() 示例1
以下展示了使用 asin() 方法的实例:
import math
a = math.pi / 8
# returning the value of arc sine of pi / 8
print ("The value of arc sine of pi / 8 is : ", end ="")
print (math.asin(a))
输出:
Python Math asin() 示例2
import math
import matplotlib.pyplot as plt
in_array = [-0.14159265, -0.57039399, -0.28559933, 0.28559933, 0.57039399, 0.94159265]
out_array = []
for i in range(len(in_array)):
out_array.append(math.asin(in_array[i]))
i += 1
print("Input_Array : \n", in_array)
print("\nOutput_Array : \n", out_array)
plt.plot(in_array, out_array, "go:")
plt.title("math.asin() in apidemos.com")
plt.xlabel("X")
plt.ylabel("Y")
plt.show()
输出:
deepinout@ubuntu:~/apidemos.com$ python3 demos.py
Input_Array :
[-0.14159265, -0.57039399, -0.28559933, 0.28559933, 0.57039399, 0.94159265]
Output_Array :
[-0.14207008957392517, -0.6069854488522558, -0.2896317474780172, 0.2896317474780172, 0.6069854488522558, 1.227328875116741]