File:Topologist's sine curve.svg
Summary
| Description |
English: Topologist's sine curve |
| Date | |
| Source | Own work |
| Author | Morn the Gorn |
| SVG development | |
| Source code | Python codefrom pylab import *
rc("xtick.major", pad = 8)
x = [.0002]
while x[-1] < .2:
o = .1 * x[-1]**2
x.append(x[-1] + o)
y = sin(1./array(x))
figure(figsize = (7, 5))
plot(x, y, lw = 1.2)
xlim(0, .2)
savefig("Topologist's sine curve.svg")
show()
|
Licensing
| Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. |
| This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. | ||
| ||
| This licensing tag was added to this file as part of the GFDL licensing update. |