mdbtxt1
mdbtxt2
Proceed to Safety

Continuous Dwell    

Robert P. Munafo, 2023 Mar 20.



"Continuous" dwell refers to any method of calculating dwell that gives a continuous value, i.e. a value that varies smoothly rather than jumping between integer values. This allows for more variety in coloring algorithms, and is essential for making a 3-D shape of the Mandelbrot set, or for visualisation of such things as ridgelines.

The simplest method is to choose a fairly large escape radius (such as 1000), then perform the ordinary iteration algorithm. Let Zn be the value of the iterate that exceeds the escape radius. The normal dwell value would be n (as shown in the pseudo-code in the escape-iterations article). The "continuous dwell" value is given by

D = n + log2(log2(|Zn|)) - log2(log2(EscapeRadius))

Variation

The formula above will give something that is devoid of any dwell band boundaries, because the part with the two log2(log2()) expressions will be a fractional value from 0.0 to 1.0, and each band will blend smoothly into the next. You may wish to create distinct color transitions at the integer dwell bands by multiplying the log2(log2()) section by a constant K so that it goes from 0.0 to K.

Comparison

Normal (integer) dwell bands Continuous dwell
The entire Mandelbrot set

Normal (integer) dwell bands Continuous dwell
An area in seahorse valley, -0.74546 +0.11669i @ 0.01276


revisions: 20221202 oldest on record; 20230320 link to 3-D and ridgelines, and Wikipedia "continuous function"




From the Mandelbrot Set Glossary and Encyclopedia, by Robert Munafo, (c) 1987-2024.

Mu-ency main pageindexrecent changesDEMZ


Robert Munafo's home pages on AWS    © 1996-2024 Robert P. Munafo.    about    contact
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License. Details here.

This page was written in the "embarrassingly readable" markup language RHTF, and was last updated on 2023 Mar 21. s.27