Logo by Trifox - Contribute your own Logo!

END OF AN ERA, FRACTALFORUMS.COM IS CONTINUED ON FRACTALFORUMS.ORG

it was a great time but no longer maintainable by c.Kleinhuis contact him for any data retrieval,
thanks and see you perhaps in 10 years again

this forum will stay online for reference
News: Follow us on Twitter
 
*
Welcome, Guest. Please login or register. April 25, 2024, 02:15:14 PM


Login with username, password and session length


The All New FractalForums is now in Public Beta Testing! Visit FractalForums.org and check it out!


Pages: [1]   Go Down
  Print  
Share this topic on DiggShare this topic on FacebookShare this topic on GoogleShare this topic on RedditShare this topic on StumbleUponShare this topic on Twitter
Author Topic: Mandelbrot Variation II (Does it have a name?)  (Read 3405 times)
0 Members and 1 Guest are viewing this topic.
jwm-art
Iterator
*
Posts: 171



WWW
« on: November 17, 2010, 05:49:34 PM »

After reading about a variant of the Mandelbrot set which is apparently classified in UltraFractal as "Generalized Celtic Mandelbrot"[1]  I came up with another variation which is a hybrid between that and the Mandelbrot Set. For odd iterations it calculates the "Generalized Celtic" and for even iterations just the Mandelbrot Set:

Code:
    for (wz = 1; wz <= depth; ++wz)
    {
        wim = 2.0 * wre * wim + c_im;
        if (wz % 2) /* if iteration count is odd */
            wre = fabsl(wre2 - wim2) + c_re; /* generalized celtic */
        else
            wre = wre2 - wim2 + c_re;         /* mandelbrot */
        wim2 = wim * wim;
        wre2 = wre * wre;
        if (wim2 + wre2 > 4.0F)
            return wz;
    }

I am wondering if anyone knows if this has a name or not, or, has an idea for a suitable name. My Linux program MDZ can generate this fractal and calls it (temporarily) "Variant". Here are some other images of it:






[1] http://www.fractalforums.com/programming/mandelbrot-variation


* variant.png (12.53 KB, 480x360 - viewed 1634 times.)
« Last Edit: November 17, 2010, 05:52:52 PM by jwm-art, Reason: Added other images » Logged
jwm-art
Iterator
*
Posts: 171



WWW
« Reply #1 on: November 20, 2010, 01:18:05 PM »

I've named it "Mandel-Celtic-Hybrid" in the new release of MDZ (coming shortly).
Logged
hermann
Iterator
*
Posts: 181



WWW
« Reply #2 on: December 13, 2010, 04:02:10 PM »

I use the name Celtic Mandelbrot for the above version.
http://www.wackerart.de/celtic-mandelbrot.html
And the name Mandelbrot Celtic for the algorithm where generalized celtic part and mandelbrot part are exchanged.

Is there also special celtic algorithm, when a generalized celtic algorithm exists?

Hermann



Logged

yv3
Conqueror
*******
Posts: 149



WWW
« Reply #3 on: December 20, 2010, 08:58:14 PM »

nice kitties, have you noticed them? smiley
Logged

Creator of yFract
Pages: [1]   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
Mandelbrot variation Programming mistabell 3 3694 Last post November 11, 2010, 11:15:54 PM
by jwm-art
Kineteic Energy Variation Mandelbrot Images Showcase (Rate My Fractal) Lee Oliver 5 2235 Last post August 06, 2010, 04:15:57 AM
by Lee Oliver
New(?) variation on the Mandelbrot (new) Theories & Research « 1 2 » laser blaster 16 1116 Last post September 18, 2013, 12:23:16 PM
by Nahee_Enterprises
How to randomize any variation using the custom variation loader script JWildfire Snicker02 0 2015 Last post November 21, 2015, 07:19:39 PM
by Snicker02
New Mandelbrot Variation (Beetle) (new) Theories & Research kaludix 14 839 Last post September 03, 2016, 08:07:28 PM
by kaludix

Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM
Page created in 0.327 seconds with 24 queries. (Pretty URLs adds 0.009s, 2q)