用python 绘制f(x)=3sinx图形
时间: 2024-03-10 13:43:14 浏览: 132
Python 绘制三角形
5星 · 资源好评率100%
您可以使用 matplotlib 库来绘制该函数的图形。以下是一个示例代码:
```python
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(-np.pi, np.pi, 1000) # 生成 -π 到 π 之间的 1000 个数
y = 3 * np.sin(x)
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('f(x) = 3sinx')
plt.show()
```
执行该代码将会绘制出 f(x) = 3sinx 的图形。请注意,这里使用了 numpy 库中的 sin 函数来计算正弦值。
阅读全文