subplot函数怎么用
时间: 2023-11-24 19:33:44 浏览: 46
MATLAB中subplot的用法.pdf
5星 · 资源好评率100%
subplot函数可以将多个子图绘制在同一个画布上。
语法格式为:
subplot(nrows, ncols, index)
其中,nrows表示子图的行数,ncols表示子图的列数,index表示当前子图的位置。
例如,以下代码将在一个2行3列的画布上绘制6个子图:
```
import matplotlib.pyplot as plt
# 绘制第一个子图
plt.subplot(2, 3, 1)
plt.plot([1, 2, 3], [4, 5, 6])
# 绘制第二个子图
plt.subplot(2, 3, 2)
plt.plot([4, 5, 6], [1, 2, 3])
# 绘制第三个子图
plt.subplot(2, 3, 3)
plt.plot([1, 2, 3], [1, 2, 3])
# 绘制第四个子图
plt.subplot(2, 3, 4)
plt.plot([4, 5, 6], [4, 5, 6])
# 绘制第五个子图
plt.subplot(2, 3, 5)
plt.plot([1, 2, 3], [4, 5, 6])
# 绘制第六个子图
plt.subplot(2, 3, 6)
plt.plot([4, 5, 6], [1, 2, 3])
plt.show()
```
运行结果如下所示:
![subplot](https://cdn.jsdelivr.net/gh/Yousazoe/picgo-repo/img/20211014161349.png)
阅读全文