File:Logarithmic spiral (1).svg
Summary
| Description |
Made with matplotlib: #!/usr/bin/env python
from pylab import *
rc('grid', color='#aaaaaa', linewidth = 1, linestyle = '-')
rc('xtick', labelsize=0)
figure(figsize = (20, 20))
ax = axes([0.1, 0.1, 0.8, 0.8], polar = True)
t = arange(-4 * pi, 4 * pi, .01)
polar(t, 1.19**t, linewidth = 2)
savefig('logarithmic_spiral.svg')
|
| Source | English Wikipedia |
| Author | user:Pbroks13 on en wikipedia |
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. |