Talk:Plotting algorithms for the Mandelbrot set
![]() | Material from Mandelbrot set was split to Plotting algorithms for the Mandelbrot set on 22:09, 11 February 2020 from this version. The former page's history now serves to provide attribution for that content in the latter page, and it must not be deleted so long as the latter page exists. Please leave this template in place to link the article histories and preserve this attribution. The former page's talk page can be accessed at Talk:Mandelbrot set. |
Article needs "see also", "further reading" and "external links" sections
This article needs the above sections, but I'm not sure where to begin. Any help would be appreciated. Jdbtwo (talk) 18:00, 12 February 2020 (UTC)
Feedback from New Page Review process
I left the following feedback for the creator/future reviewers while reviewing this article: Most of the text is from the set]. In edit summary, I would add the attribution per policy..
scope_creepTalk 10:47, 3 June 2020 (UTC)
Missing section: e^(-|z|)-smoothing
I stumbled upon the following Mandelbrot animation:
https://rtricks.blogspot.com/2007/04/mandelbrot-set-with-r-animation.html
By chance I found out that there is a name for this coloring. The addition of the individual images is called e^(-|z|)-smoothing.
You can find the description here (https://eudml.org/doc/257038):
http://www.mi.sanu.ac.rs/vismath/javier/b3.htm (year: 1999)
http://math.unipa.it/~grim/Jbarrallo.PDF (year: 2002)
If you know the Julia programming language, you can try this out right away:
https://www.rosettacode.org/wiki/Mandelbrot_set#Mandelbrot_Set_with_Julia_Animation
Since I am not a native speaker, I cannot create this section myself.
Greetings --Majow (talk) 10:42, 7 July 2021 (UTC)
Primary Source for Mariani/Silver
I have written the following article: https://ricomariani.medium.com/the-mariani-silver-algorithm-for-drawing-the-mandelbrot-set-a71e31bc20b6
You may or may not want to use some of that information as a primary source in any future edits. It helps to support [13] if nothing else.
Mariani-Silver isn't really characterized very well in the main text. All versions of it used recursion to look for bigger regions and then divide as necessary even the very first one I wrote.
50.35.68.222 (talk) 05:37, 29 August 2021 (UTC)
- Thank you for pointing this out. A Java-based implementation of the Mariani-Silver algorithm (Divide and Conquer) can be found here: https://en.wikibooks.org/wiki/Fractals/fractalzoomer#Greedy_Drawing_Algorithms and https://github.com/hrkalona/Fractal-Zoomer/tree/master/src/fractalzoomer/core/drawing_algorithms Majow (talk) 09:25, 25 September 2022 (UTC)
complex numbers
Hi. Pseudocode/code can use complex mumbers, not 2 double numbers. This makes code easier to read. --Adam majewski (talk) 08:47, 24 December 2021 (UTC)
Derivative Bailout or "derbail"
I'm not a specialist, but doesn't the derbail code always return 1024? And I also think the while loop never starts because: magn(x,y) > 4 is not true. — Preceding unsigned comment added by Philipsjps (talk • contribs) 16:23, 19 May 2022 (UTC)
A useful special case of the distance estimation formula
To understand the distance estimation formula more easily, one can consider the Julia set with as a special case: This set is simply the unit circle around the origin. The first polynomials are , , and . The first derivatives are , , und . In general, the polynomial results from the iteration rule to . The derivation results from the derivation rule to .
If you now apply the distance formula without the factor 2, you get , and thus . This formula approximates the distance to the unit circle very well near the circle of radius 1: , and . Only with larger deviations from the number 1 does the error become large, e.g. , so here the real distance 5 is overestimated by a factor of 2. Majow (talk) 16:51, 2 January 2023 (UTC)