Python Math sin() 函数
Python Math sin() 返回的x弧度的正弦值。
Python Math sin() 语法
以下是 sin() 方法的语法:
import math
math.sin(x)
注意:sin()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。
Python Math sin() 参数
- x : 一个数值。
Python Math sin() 返回值
返回的x弧度的正弦值,数值在 -1 到 1 之间。
Python Math sin() 示例1
以下展示了使用 sin() 方法的实例:
#!/usr/bin/python3
import math
print ("sin(9) : ", math.sin(9))
print ("sin(-9) : ", math.sin(-9))
print ("sin(0) : ", math.sin(0))
print ("sin(math.pi) : ", math.sin(math.pi))
print ("sin(math.pi/4) : ", math.sin(math.pi/4))
输出:
Python Math sin() 示例2
图形表示法显示sin()函数.
import math
import matplotlib.pyplot as plt
in_array = [-3.14159265, -2.57039399, -0.28559933,
0.28559933, 2.57039399, 3.14159265]
out_array = []
for i in range(len(in_array)):
out_array.append(math.sin(in_array[i]))
i += 1
print("in_array : ", in_array)
print("\nout_array : ", out_array)
# red for numpy.sin()
plt.plot(in_array, out_array, color = 'red', marker = "o")
plt.title("math.sin() in apidemos.com")
plt.xlabel("X")
plt.ylabel("Y")
plt.show()
输出:
deepinout@ubuntu:~/apidemos.com$ python3 demos.py
in_array : [-3.14159265, -2.57039399, -0.28559933, 0.28559933, 2.57039399, 3.14159265]
out_array : [-3.5897930298416118e-09, -0.5406408168673427, -0.2817325547837714, 0.2817325547837714, 0.5406408168673427, 3.5897930298416118e-09]