python三角函数
时间: 2023-06-22 16:17:54 浏览: 138
Python内置了三角函数模块math,其中包括sin(x)、cos(x)、tan(x)、asin(x)、acos(x)、atan(x)、hypot(x, y)、degrees(x)和radians(x)等函数。这些函数用于计算三角函数值,其中x为角度(弧度制),y为另一个参数。下面是一些示例代码:
```python
import math
# 计算正弦值
sin_value = math.sin(math.pi/4)
print(sin_value)
# 计算余弦值
cos_value = math.cos(math.pi/4)
print(cos_value)
# 计算正切值
tan_value = math.tan(math.pi/4)
print(tan_value)
# 计算反正弦值
asin_value = math.asin(0.5)
print(asin_value)
# 计算反余弦值
acos_value = math.acos(0.5)
print(acos_value)
# 计算反正切值
atan_value = math.atan(1)
print(atan_value)
# 计算两个数的平方和的平方根
hypot_value = math.hypot(3, 4)
print(hypot_value)
# 将角度转换为弧度
degrees_value = math.degrees(math.pi/4)
print(degrees_value)
# 将弧度转换为角度
radians_value = math.radians(45)
print(radians_value)
```
阅读全文