- 授权协议: Python
- 开发语言: Python
- 操作系统: Windows
- 软件首页: http://matplotlib.org/
- 软件文档: http://matplotlib.org/contents.html
- 官方下载: http://matplotlib.org/downloads.html
软件介绍
matplotlib,风格类似 Matlab 的基于Python的图表绘图系统。
matplotlib 是 Python 最著名的绘图库,它提供了一整套和 matlab 相似的命令 API,十分适合交互式地进行制图。而且也可以方便地将它作为绘图控件,嵌入 GUI 应用程序中。
示例代码:
>>> from pylab import randn, hist >>> x = randn(10000) >>> hist(x, 100)
