NotesUESTC/python/Matplotlib使用笔记.md

17 lines
291 B
Markdown
Raw Normal View History

2024-03-27 11:19:08 +08:00
Matplotlib使用笔记
1、Matplotlib结合numpy绘制图形
```python
import numpy as np
from matplotlib import pyplot as plt
x = np.arange(1,11)
y = 2 * x + 5
plt.title("Matplotlib demo")
plt.xlabel("x axis caption")
plt.ylabel("y axis caption")
plt.plot(x,y)
plt.show()
```