You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fractals/julia_sets.py
+46-21Lines changed: 46 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -1,23 +1,30 @@
1
1
"""Author Alexandre De Zotti
2
2
3
-
Draws Julia sets of quadratic polynomials and exponential maps. More specifically, this iterates the function a fixed number of times then plot whether the absolute value of the last iterate is greater than a fixed threshold (named "escape radius"). For the exponential map this is not really an escape radius but rather a convenient way to approximate the Julia set with bounded orbits.
3
+
Draws Julia sets of quadratic polynomials and exponential maps.
4
+
More specifically, this iterates the function a fixed number of times
5
+
then plots whether the absolute value of the last iterate is greater than
6
+
a fixed threshold (named "escape radius"). For the exponential map this is not
7
+
really an escape radius but rather a convenient way to approximate the Julia
8
+
set with bounded orbits.
4
9
5
10
The examples presented here are:
6
-
- The Cauliflower Julia set, see e.g. https://en.wikipedia.org/wiki/File:Julia_z2%2B0,25.png
- Other examples from https://en.wikipedia.org/wiki/Julia_set
8
-
- An exponential map Julia set ambiantly homeomorphic to the examples from in http://www.math.univ-toulouse.fr/~cheritat/GalII/galery.html and https://ddd.uab.cat/pub/pubmat/02141493v43n1/02141493v43n1p27.pdf
14
+
- An exponential map Julia set, ambiantly homeomorphic to the examples in
0 commit comments