Logo by Fiery - 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: Did you know ? you can use LaTex inside Postings on fractalforums.com!
 
*
Welcome, Guest. Please login or register. March 28, 2024, 01:25:33 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: Fractal names and formula sumarization  (Read 9226 times)
Description: Discussion about well know Fractal formulas
0 Members and 4 Guests are viewing this topic.
nmmmnu
Forums Freshman
**
Posts: 15


WWW
« on: June 14, 2015, 05:48:32 PM »

Hi
I need help / opinions in fractal formula summations.

Are following names correct?
Is there anything "famous" I am missing (beside Mandelbar / Tricorn / Conjugated)

Here is the list "collected" for the moment:





Mandelbrot
Its formula is Z = Z^2 + C
here is simple code:

static color Z_mandelbrot(float x, float y, color it){
   float zx = 0;
   float zy = 0;

   color i;
   for(i = 0; i < it; ++i){
      float zx2 = zx * zx;
      float zy2 = zy * zy;

      if (zx2 + zy2 > ESCAPE2)
         return i;

      // z = z*z + c

      zy = 2 * zx * zy + y;
      zx = zx2 - zy2 + x;
   }

   return i;
}




Burning Ship

same as Mandelbrot, but get ABS of zx and zy:

static color Z_burningship(float x, float y, color it){
   //...
   for(i = 0; i < it; ++i){
      zx = ABS(zx);
      zy = ABS(zy);
   //...




Perpendicular Burning Ship

same as Mandelbrot, but get ABS only on zy (imaginary)

static color Z_perpendicularburningship(float x, float y, color it){
   //...
   for(i = 0; i < it; ++i){
      zy = ABS(zy);
   //...




Perpendicular Mandelbrot

same as Mandelbrot, but get ABS only on zx (real) and we do it with negative sign

static color Z_perpendicularburningship(float x, float y, color it){
   //...
   for(i = 0; i < it; ++i){
      zx = - ABS(zx);
   //...






Buffalo

Its formula is Z = Z^2 - Z + C

static color Z_buffalo_original(float x, float y, color it){
   float zx = 0;
   float zy = 0;

   color i;
   for(i = 0; i < it; ++i){
      zx = ABS(zx);
      zy = ABS(zy);

      float zx2 = zx * zx;
      float zy2 = zy * zy;

      if (zx2 + zy2 > ESCAPE2)
         return i;

      // z = z*z - z + c

      zy = 2 * zx * zy - zy + y;
      zx = zx2 - zy2 - zx + x;
   }

   return i;
}


Question - how is called same fractal without ABS() ? It looks interesting enough to have name?





Celtic

For these I do not know the complex number formula. It looks like Mandelbrot formula, but have ABS "inside".

static color Z_celtic(float x, float y, color it){
   float zx = 0;
   float zy = 0;

   color i;
   for(i = 0; i < it; ++i){
      float zx2 = zx * zx;
      float zy2 = zy * zy;

      if (zx2 + zy2 > ESCAPE2)
         return i;

      // z = z*z + c

      zy = - 2 * zx * zy + y;
      zx = ABS(zx2 - zy2) + x;
   }

   return i;
}




Perpendicular Celtic

same formula as Celtic, but ABS(zx), with negative sign.

static color Z_perpendicularceltic(float x, float y, color it){
   //...
   for(i = 0; i < it; ++i){
      zx = - ABS(zx);
   //...




and we have another Celtic variation called Perpendicular Buffalo
same formula as Celtic, but ABS(zy).

static color Z_perpendicularbuffalo(float x, float y, color it){
   //...
   for(i = 0; i < it; ++i){
      zy = ABS(zy);
   //...


Question - Is this correct name? Its formula have noting to do with Buffalo?



I will edit the question and add pictures tomorrow
Logged
Adam Majewski
Fractal Lover
**
Posts: 221


WWW
« Reply #1 on: June 14, 2015, 07:54:52 PM »

http://www.nahee.com/spanky/www/fractint/fractal_types.html
http://www.chaospro.de/formulas/display.php?fileid=222

HTH
« Last Edit: June 15, 2015, 09:36:32 PM by Adam Majewski » Logged
cKleinhuis
Administrator
Fractal Senior
*******
Posts: 7044


formerly known as 'Trifox'


WWW
« Reply #2 on: June 14, 2015, 09:06:13 PM »

the list from nahee is quite what you are aiming wink

so, for making a comprehensive list, you should consider making it more detailed, for once you are listing escape time fractals, associating their fractal dimensions to them is very interesting as well ( can be hard to determine ) like this list:
https://en.wikipedia.org/?title=List_of_fractals_by_Hausdorff_dimension


and in fact i think this list can grow quite a lot, like fn(z)^2+c where fn stands for any 1-ary function... how to classify such?

Logged

---

divide and conquer - iterate and rule - chaos is No random!
nmmmnu
Forums Freshman
**
Posts: 15


WWW
« Reply #3 on: June 14, 2015, 10:42:15 PM »

Hi

I never wanted to do broad summarization. I just wanted to summarize well known escape tie fractals such Mandelbrot et all, so I can make a useful webpage where all these are listed along with formulas, so next one not looking alll over the internet for the formulas like I did last two weeks...

Another problem I see is "clasical" fractal naming. Internet is fill with some pictures, where nmes are completly wrong. I can see a picture of something, they name it burning ship, and in a week I found it is celtic or something else. I think such page will be quite usefuf for beginners.

Finally, when I say page, I really mean single html, not whole webasite - just nae, formula and small picture.

Hope now is much clear what i am trying to do?


Logged
cKleinhuis
Administrator
Fractal Senior
*******
Posts: 7044


formerly known as 'Trifox'


WWW
« Reply #4 on: June 14, 2015, 10:54:35 PM »

 hrmm this makes me thinking of changing the usage of
http://ultrafractalwiki.fractalforums.com/

to
http://wiki.fractalforums.com/

which should contain detailed informations like you described
Logged

---

divide and conquer - iterate and rule - chaos is No random!
Kalles Fraktaler
Fractal Senior
******
Posts: 1458



kallesfraktaler
WWW
« Reply #5 on: June 14, 2015, 11:39:16 PM »

Here is what I implemented in Kalles Fraktaler

http://stardust4ever.deviantart.com/art/Mandelbrot-ABS-Variations-Complete-Set-of-Formulas-487039852

And most of these
http://stardust4ever.deviantart.com/art/Cubic-Mandelbrot-ABS-Variations-Incomplete-487039945
Logged

Want to create DEEP Mandelbrot fractals 100 times faster than the commercial programs, for FREE? One hour or one minute? Three months or one day? Try Kalles Fraktaler http://www.chillheimer.de/kallesfraktaler
http://www.facebook.com/kallesfraktaler
3dickulus
Global Moderator
Fractal Senior
******
Posts: 1558



WWW
« Reply #6 on: June 15, 2015, 03:15:59 AM »

hrmm this makes me thinking of changing the usage of
http://ultrafractalwiki.fractalforums.com/

to
http://wiki.fractalforums.com/

which should contain detailed informations like you described

excellent idea cK!
Logged

Resistance is fertile...
You will be illuminated!

                            #B^] https://en.wikibooks.org/wiki/Fractals/fragmentarium
nmmmnu
Forums Freshman
**
Posts: 15


WWW
« Reply #7 on: June 15, 2015, 08:10:09 AM »

@kalles - your images were my starting point, but I found some older versions that had just few fractals.

so lets do the wiki?
Logged
Pages: [1]   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
Fractal Formula Help Help & Support fractalwizz 5 7509 Last post November 30, 2008, 03:30:03 PM
by David Makin
A possible 3D fractal formula Mandelbulb 3d luc2 6 5539 Last post March 14, 2012, 03:45:10 PM
by Alef
Names in mb3d parameters Tutorials Mikeygs64 5 3773 Last post January 07, 2013, 01:31:22 PM
by DarkBeam
Your favorite names of the regions of the Mandelbrot Set Let's collaborate on something! Yggdrasil 4 6574 Last post January 28, 2015, 12:55:40 AM
by billtavis
Listing of all formula names (v191) alphabetically Tutorials knokin 0 1446 Last post July 07, 2016, 03:18:37 AM
by knokin

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.233 seconds with 24 queries. (Pretty URLs adds 0.01s, 2q)