1、绘制正弦曲线,并设置标题、坐标轴名称和坐标轴范围; 2、同一坐标系下绘制多种曲线并通过样式、宽度和颜色加以区分;
时间: 2024-06-10 12:08:11 浏览: 79
很高兴回答你的问题!
1、绘制正弦曲线的代码示例如下:
```
import numpy as np
import matplotlib.pyplot as plt
# 生成x和y数据
x = np.linspace(0, 2 * np.pi, 1000)
y = np.sin(x)
# 绘制图像
plt.plot(x, y)
# 设置标题和坐标轴名称
plt.title('Sine Curve')
plt.xlabel('X Axis')
plt.ylabel('Y Axis')
# 设置坐标轴范围
plt.xlim(0, 2 * np.pi)
plt.ylim(-1.2, 1.2)
# 显示图像
plt.show()
```
2、同一坐标系下绘制多种曲线的代码示例如下:
```
import numpy as np
import matplotlib.pyplot as plt
# 生成x和y1、y2、y3数据
x = np.linspace(0, 2 * np.pi, 1000)
y1 = np.sin(x)
y2 = np.cos(x)
y3 = np.tan(x)
# 绘制图像
plt.plot(x, y1, label='Sine Curve')
plt.plot(x, y2, label='Cosine Curve')
plt.plot(x, y3, label='Tangent Curve')
# 设置标题和坐标轴名称
plt.title('Trigonometric Curves')
plt.xlabel('X Axis')
plt.ylabel('Y Axis')
# 设置坐标轴范围
plt.xlim(0, 2 * np.pi)
plt.ylim(-5, 5)
# 设置曲线样式、宽度和颜色
plt.plot(x, y1, linestyle='-', linewidth=2, color='blue')
plt.plot(x, y2, linestyle='--', linewidth=2, color='red')
plt.plot(x, y3, linestyle=':', linewidth=2, color='green')
# 显示图例
plt.legend()
# 显示图像
plt.show()
```
当然,以上代码只是示例,实际绘图中你可以根据需要进行修改。希望能对你有所帮助!
阅读全文