matplotlib - 基于 Python 的图表绘图系统


Python
Windows
Python

软件简介

matplotlib

matplotlib,风格类似 Matlab 的基于Python的图表绘图系统。

matplotlib 是 Python 最著名的绘图库,它提供了一整套和 matlab 相似的命令
API,十分适合交互式地进行制图。而且也可以方便地将它作为绘图控件,嵌入 GUI 应用程序中。

screenshots

示例代码:

  >>> from pylab import randn, hist
  >>> x = randn(10000)
  >>> hist(x, 100)