Python科学计算库之matplotlibmatplotlib
matplotlibFigure和SubplotFigure:面板(图),matplotlib中的所有图像都是位于figure对象中,一个图像只能有一个figure对象。Subplot:子图,figure对象下创建一个或多个subplot对象(即axes)用于绘制图像。曲线图(plot)import numpy as npimport matplotlib as m...