Logo by S Nelson - 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: Visit the official fractalforums.com Youtube Channel
 
*
Welcome, Guest. Please login or register. April 19, 2024, 02:12:05 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] 2   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: Do z-->z/c² or z-->z*c² create a fractal  (Read 11747 times)
0 Members and 1 Guest are viewing this topic.
Chillheimer
Global Moderator
Fractal Schemer
******
Posts: 972


Just another fractal being floating by..


chilli.chillheimer chillheimer
WWW
« on: August 31, 2016, 12:27:55 AM »

Hi guys!
I am wondering if either z-->z/c²  or z-->z*c² will form anything fractal if fed with the right starting values.
And what happens if I set c to a fixed value and just change z?

I have no clue how I could check any of this or where to start researching. How do you google for a formula?!
Is there a program(preferrably freeware) that you can feed with your own formulas and play around to see if it generates any fractal images?

Any input is appreciated!
« Last Edit: August 31, 2016, 12:45:38 AM by Chillheimer » Logged

--- Fractals - add some Chaos to your life and put the world in order. ---
PieMan597
Conqueror
*******
Posts: 122



WWW
« Reply #1 on: August 31, 2016, 01:23:52 AM »

Xaos meet you input your own formulas, it is free on Windows and Linux.
Logged
3dickulus
Global Moderator
Fractal Senior
******
Posts: 1558



WWW
« Reply #2 on: August 31, 2016, 02:14:36 AM »

this nifty little proggy lets you enter your own color formulas and fractal formulas



main page...
English https://www.physcip.uni-stuttgart.de/pages/~phy11733/index_e.html
German https://www.physcip.uni-stuttgart.de/pages/~phy11733/

as I recall, it's a bit slow but the formula parser is really very cool, and the source code is available, not sure if there is a windows version  undecided

Logged

Resistance is fertile...
You will be illuminated!

                            #B^] https://en.wikibooks.org/wiki/Fractals/fragmentarium
TheRedshiftRider
Fractalist Chemist
Global Moderator
Fractal Iambus
******
Posts: 854



WWW
« Reply #3 on: August 31, 2016, 05:55:45 AM »

Fractal zoomer:
https://sourceforge.net/projects/fractalzoomer/?source=directory

This application has a user formula feature.
(Side-note: I actually requested the feature because I needed it for something else. cheesy )
Logged

Motivation is like a salt, once it has been dissolved it can react with things it comes into contact with to form something interesting. nerd
Chillheimer
Global Moderator
Fractal Schemer
******
Posts: 972


Just another fractal being floating by..


chilli.chillheimer chillheimer
WWW
« Reply #4 on: August 31, 2016, 08:44:21 AM »

thank you guys!
I tried xaos - obviously the formulas don't do anything special, all I get is a circle
Logged

--- Fractals - add some Chaos to your life and put the world in order. ---
PieMan597
Conqueror
*******
Posts: 122



WWW
« Reply #5 on: August 31, 2016, 06:05:55 PM »

Here's a formula to try: (z^2+c)/(c^2+z)
Logged
lkmitch
Fractal Lover
**
Posts: 238



« Reply #6 on: August 31, 2016, 07:54:36 PM »

Here's a Julia-type fractal based on Pieman's idea.  f(z) = (z^n+c)/(c^n+z), for n = -2.


* 2016-08-31-b.jpg (112.29 KB, 800x600 - viewed 564 times.)
Logged
Adam Majewski
Fractal Lover
**
Posts: 221


WWW
« Reply #7 on: September 02, 2016, 07:19:14 PM »

Great. How it was made ?
Logged
simon.snake
Fractal Bachius
*
Posts: 640


Experienced Fractal eXtreme plugin crasher!


simon.fez SimonSideBurns
« Reply #8 on: September 02, 2016, 09:55:04 PM »

FractInt (for all its failings) does a reasonable job with its built-in formula parser.

I admit I use it to play with ideas (even if I have no idea if they'll work - they usually don't) to try to find interesting things.  That's how I found my 'Simonbrot' that people have been exploring.

The only problem with it is that because it was a DOS program you have to load your favourite text editor (notepad anyone) and create a .frm file containing your formulas.

This can be saved anywhere but by default FractInt looks in its own folder first.  I think that may also be configurable.

If you go down that route let me know so I can see if there's any way to assist.
Logged

To anyone viewing my posts and finding missing/broken links to a website called www.needanother.co.uk, I still own the domain but recently cancelled my server (saving £30/month) so even though the domain address exists, it points nowhere.  I hope to one day sort something out but for now - sorry!
simon.snake
Fractal Bachius
*
Posts: 640


Experienced Fractal eXtreme plugin crasher!


simon.fez SimonSideBurns
« Reply #9 on: September 02, 2016, 10:15:41 PM »

A rather plain circle in FractInt for both formulas too.
Logged

To anyone viewing my posts and finding missing/broken links to a website called www.needanother.co.uk, I still own the domain but recently cancelled my server (saving £30/month) so even though the domain address exists, it points nowhere.  I hope to one day sort something out but for now - sorry!
lkmitch
Fractal Lover
**
Posts: 238



« Reply #10 on: September 07, 2016, 05:40:36 PM »

Great. How it was made ?


I made it in Ultra Fractal.  Here is the formula.  If you don't use Ultra Fractal, you should be able to read the code and figure it out for the program that you use.  The Mandelbrot version is trickier, since finding a critical point for beginning the iteration is not trivial.


rational-julia {
;
; from pieman597
; http://www.fractalforums.com/general-discussion-b77/t24459/msg95653/#new
;
; based on f(z) = (z^2+c)/(c^2+z)
; generalize to any power
;
init:
  complex bottom=(0,0)
  complex c=@julparam
  complex cton=c^@power
  complex top=(0,0)
  complex z=#pixel
loop:
  top=z^@power+c
  bottom=z+cton
  z=top/bottom
bailout:
  |z|<@bailout
default:
  title="rational julia"
  complex param julparam
    caption="julia parameter"
    default=(0,1)
  endparam
  complex param power
    caption="power"
    default=2
  endparam
  float param bailout
    caption="bailout"
    default=1000
  endparam
switch:
  type="rational-mandelbrot"
  power=power
  bailout=bailout
}
Logged
Adam Majewski
Fractal Lover
**
Posts: 221


WWW
« Reply #11 on: October 07, 2016, 08:35:07 PM »

can you put your image to commons ?
https://commons.wikimedia.org/wiki/Category:Julia_sets

It's very nice
Logged
LionHeart
Explorer
****
Posts: 46



« Reply #12 on: April 18, 2017, 08:54:01 AM »

Hi Simon,

I notice in your message: "Re: Do z-->z/c² or z-->z*c² create a fractal « Reply #8 on: September 02, 2016, 09:55:04 PM »" that you talk about the function parser in FRACTINT.

I have a windoze program with an on-screen parser based on the FRACTINT library. You may find it useful for playing with fractal formulae rather than all that tedious mucking about in hyperspace using text files interpreted in a Dossy program smiley

It's a rough and ready program, but I have fun:

http://www.deleeuw.com.au/download/SetupManpWIN.exe

If you actually decide to try it, press T and the direct formula parser is in the middle of the dialogue box.

Have fun.

Paul the LionHeart

Logged

Paul the LionHeart
simon.snake
Fractal Bachius
*
Posts: 640


Experienced Fractal eXtreme plugin crasher!


simon.fez SimonSideBurns
« Reply #13 on: April 18, 2017, 10:22:48 PM »

Hi Paul

I do believe I have your program installed (or at least on my laptop) so I have used it before.  What's the current version number? I've got v3.01j installed.
Logged

To anyone viewing my posts and finding missing/broken links to a website called www.needanother.co.uk, I still own the domain but recently cancelled my server (saving £30/month) so even though the domain address exists, it points nowhere.  I hope to one day sort something out but for now - sorry!
LionHeart
Explorer
****
Posts: 46



« Reply #14 on: April 18, 2017, 10:57:15 PM »

Hi Simon,

The current version of ManpWIN (including SimonBrot) is 3.03a.

I hope you can get it. Let me know if you can't and we will find a way.

I tried to attach it to a message but got: "Your file is too large. The maximum attachment size allowed is 256 KB. "

Logged

Paul the LionHeart
Pages: [1] 2   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
create 3D fractal using images? 3D Fractal Generation teamfresh 10 6446 Last post March 26, 2010, 01:13:43 AM
by Fractal_Artist
How to create 'unique' fractal art with M3D (or how not to) Mandelbulb 3d « 1 2 » kameelian 16 13322 Last post April 28, 2012, 02:04:19 AM
by PhotoComix
create axolotl fractal - for university.... Let's collaborate on something! « 1 2 3 » cKleinhuis 40 10019 Last post January 29, 2013, 01:36:26 PM
by matty686
Can Apophysis be used to create fractal landscapes? Help & Support pswanson 3 650 Last post October 24, 2014, 04:27:00 AM
by JohnVV
Create a 3D fractal generator program from scratch, what will it take? Programming ac4937 2 8671 Last post March 05, 2017, 12:02:39 AM
by DarkBeam

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.208 seconds with 27 queries. (Pretty URLs adds 0.014s, 2q)