MatPlotLib

来源:互联网 发布:王石田朴珺 知乎 编辑:程序博客网 时间:2024/05/10 04:59

http://matplotlib.sourceforge.net/examples/pylab_examples/pcolor_demo.html
 

pylab_examples example code: pcolor_demo.py¶

[source code,hires.png, pdf]

../../_images/pcolor_demo.png
#!/usr/bin/env python"""See pcolor_demo2 for an alternative way of generating pcolor plotsusing imshow that is likely faster for large grids"""from __future__ import divisionfrom matplotlib.patches import Patchfrom pylab import *def func3(x,y):    return (1- x/2 + x**5 + y**3)*exp(-x**2-y**2)# make these smaller to increase the resolutiondx, dy = 0.05, 0.05x = arange(-3.0, 3.0001, dx)y = arange(-3.0, 3.0001, dy)X,Y = meshgrid(x, y)Z = func3(X, Y)pcolor(X, Y, Z)colorbar()axis([-3,3,-3,3])show()

Keywords: python, matplotlib, pylab, example, codex (see Search examples)

原创粉丝点击