Mataloptlib画出颜色图线py
时间: 2023-07-09 15:04:17 浏览: 90
Matplotlib画图
以下是使用Matplotlib库生成颜色图线的Python代码示例:
```python
import numpy as np
import matplotlib.pyplot as plt
# 生成数据
x = np.linspace(0, 2*np.pi, 100)
y1 = np.sin(x)
y2 = np.cos(x)
# 绘制线条
fig, ax = plt.subplots()
ax.plot(x, y1, color='blue', label='sin')
ax.plot(x, y2, color='red', label='cos')
# 添加图例
ax.legend()
# 添加标题和标签
ax.set_title('Sin and Cos Waves')
ax.set_xlabel('X Axis')
ax.set_ylabel('Y Axis')
# 显示图形
plt.show()
```
运行以上代码,就可以生成一张包含sin和cos函数曲线的颜色图线。你可以根据自己的需求修改数据和样式。
阅读全文