subplot是MATLAB中的函数。 使用方法:subplot(m,n,p)或者subplot(m n p)。 subplot是将多个图画到一个平面上的工具。其中,m表示是图排成m行,n表示图排成n列,也就是整个figure中有n个图是排成一行的,一共m行,如果m=2就是表示2行图。p表示图所在的位置,p=1表示从左到右从上到下的第一个位置。
subplot() matplotlib.pyplot.subplot(*args, **kwargs) Add an Axes to the current figure or retrieve an existing Axes. 理解Axes&Backend in matplotlib This is a wrapper of Figure.add_subplot which prov