File:Logarithmic Spiral Pylab.svg
Summary
| Description |
English: Logarithmic spiral |
| Date | |
| Source | Own work |
| Author | Morn the Gorn |
| SVG development | Category:Valid SVG created with Text EditorCategory:SVG Simplified#%200.89 |
Python (Matplotlib) #!/usr/bin/env python from pylab import * rc('grid', color='#AAA', linewidth = 1, linestyle = '-') figure(figsize = (6, 6)) ax = axes([0.1, 0.1, 0.8, 0.8], polar = True) t = arange(-4 * pi, 4 * pi, .1) polar(t, 1.19**t, linewidth = 2) xt, yt = xticks()[0], yticks()[0] xticks(xt, ['' for q in range(len(xt))]) yticks(yt, ['' for q in range(len(yt))]) savefig('logarithmic_spiral.svg') show()
Licensing
| I, the copyright holder of this work, release this work into the public domain. This applies worldwide. In some countries this may not be legally possible; if so: I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law. |