Jump to content

Talk:Plotting algorithms for the Mandelbrot set

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Philipsjps (talk | contribs) at 16:23, 19 May 2022. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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)[reply]

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)[reply]

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

https://www.rosettacode.org/wiki/Mandelbrot_set#Normalized_Iteration_Count.2C_Distance_Estimation_and_Mercator_Maps

Since I am not a native speaker, I cannot create this section myself.

Greetings --Majow (talk) 10:42, 7 July 2021 (UTC)[reply]

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)[reply]

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)[reply]

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.