用Python画出y=sin(x)
时间: 2023-06-07 19:11:49 浏览: 111
好的,以下是使用 Python 画出 y=sin(x) 的代码:
```python
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 2 * np.pi, 200) # 生成 0~2*pi 之间 200 个数
y = np.sin(x)
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('y=sin(x)')
plt.show()
```
运行以上代码即可在窗口中显示 y=sin(x) 的图像。希望我的回答能够对你有所帮助。
相关问题
用Python画出y1=sin(x)和y2=cox(x)
好的,以下是用Python绘制y1=sin(x)和y2=cos(x)的代码示例:
```python
import numpy as np
import matplotlib.pyplot as plt
# 生成x轴的数据
x = np.arange(0, 10, 0.1)
# 计算y1和y2
y1 = np.sin(x)
y2 = np.cos(x)
# 绘制y1和y2
plt.plot(x, y1, label='y1=sin(x)')
plt.plot(x, y2, label='y2=cos(x)')
# 添加图例和标签
plt.legend()
plt.xlabel('x')
plt.ylabel('y')
plt.title('y1=sin(x) and y2=cos(x)')
# 显示图形
plt.show()
```
运行以上代码可以得到绘制出来的y1=sin(x)和y2=cos(x)的图形。注意,需要安装numpy和matplotlib模块才能运行该代码。
用Python画出y1=sin(x)和y2=cox(x),其中x的取值范围为[-2,2]
当然,我可以帮你回答这个问题。以下是代码:
``` python
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-2,2,1000)
y1 = np.sin(x)
y2 = np.cos(x)
plt.plot(x, y1, label="y=sin(x)")
plt.plot(x, y2, label="y=cos(x)")
plt.xlabel("x")
plt.ylabel("y")
plt.legend()
plt.show()
```
你可以运行这段代码来看到结果。祝你好运!
阅读全文