Original file (SVG file, nominally 450 × 270 pixels, file size: 22 KB)
Summary
Creation
The parameterization used was
x
=
a
(
1
−
cos
u
+
∫
0
u
sin
2
α
sin
2
α
+
β
d
α
)
{\displaystyle x=a\left(1-\cos u+\int \limits _{0}^{u}{\frac {\sin ^{2}\alpha }{\sqrt {\sin ^{2}\alpha +\beta }}}d\alpha \right)}
y
=
a
(
sin
u
+
sin
2
u
+
β
)
{\displaystyle y=a(\sin u+{\sqrt {\sin ^{2}u+\beta }})}
with
β
=
a
2
/
b
2
{\displaystyle \beta =a^{2}/b^{2}}
where
a
{\displaystyle a}
and
b
{\displaystyle b}
are parameters.
This file was created with Python ,NumPy and Matplotlib .
from __future__ import division
import matplotlib.pyplot as plt
import numpy as np
from scipy.integrate import quad
plt . rcParams [ "axes.spines.top" ] = False
plt . rcParams [ "axes.spines.right" ] = False
def fun ( alpha , beta ):
return np . sin ( alpha ) ** 2 / np . sqrt ( np . sin ( alpha ) ** 2 + beta )
a = 1.
b = 0.8
beta = a ** 2 / b ** 2
u = np . linspace ( 0 , 9 * np . pi , 500 )
integral = np . array ([ quad ( fun , 0 , uval , args = ( beta ,))
for uval in u ])
x = integral [:, 0 ]
x = a * ( 1 - np . cos ( u ) + x )
y = a * ( np . sin ( u ) + np . sqrt ( np . sin ( u ) ** 2 + beta ))
plt . figure ( figsize = ( 5 , 3 ))
plt . plot ( x , y , lw = 2 )
plt . ylim ([ 0 , 3.0 ])
plt . savefig ( "Nodary.svg" , transparent = True )
plt . show ()
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
You are free:
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
https://creativecommons.org/licenses/by/4.0 CC BY 4.0 Creative Commons Attribution 4.0 true true English Add a one-line explanation of what this file represents
File history
File usage
The following 2 pages use this file:
This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
If the file has been modified from its original state, some details may not fully reflect the modified file.