File: fill_demo2.py

package info (click to toggle)
matplotlib 0.99.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 33,060 kB
  • ctags: 28,162
  • sloc: python: 79,063; cpp: 64,496; objc: 4,513; ansic: 1,948; makefile: 146; sh: 7
file content (10 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
from matplotlib.pyplot import figure, show
from numpy import arange, sin, pi

fig = figure()
ax = fig.add_subplot(111)
t = arange(0.0,3.01,0.01)
s = sin(2*pi*t)
c = sin(4*pi*t)
ax.fill(t, s, 'b', t, c, 'g', alpha=0.2)
show()