Differences between revisions 1 and 59 (spanning 58 versions)
Revision 1 as of 2006-08-17 21:38:24
Size: 300
Editor: wstein
Comment:
Revision 59 as of 2017-03-26 02:08:05
Size: 15
Editor: mrennekamp
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
 * Everywhere continuous, nowhere differentiable function (in the infinite limit, anyway):
{{{p = Graphics()
for n in range(1,20):
  f = lambda x: sum([sin(x*3^i)/(2^i) for i in range(1,n)])
  p += plot(f,0,float(pi/3),plot_points=2000,rgbcolor=hue(n/20))

p.show(xmin=0, ymin=0,dpi=250)
}}}
#REDIRECT art

pics (last edited 2017-03-26 02:08:05 by mrennekamp)