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
1.基础绘图 和python类似 1.1 绘图:plot() 如果绘制多条曲线,需要使用hold on-hold off ,不然后面的曲线会覆盖掉前面的。 hold on plot(cos(0:pi/20:2*pi),'o-k'); plot(sin(0:pi/20:2*pi),'X--b'); hold off%两个一起画;不使用hold on的话,默认会覆盖掉前面那张图片 1.2 样式 p