Menu

[r4651]: / trunk / htdocs / examples / fill_demo2.py  Maximize  Restore  History

Download this file

11 lines (9 with data), 225 Bytes

 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()
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.