Talk About Network



Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Fractals > Iterative versi...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 2 of 4 Topic 169 of 206
Post > Topic >>

Iterative version of cubic Julia Mandelbrot like Bezier

by Roger Bagula <rlbagula@[EMAIL PROTECTED] > Jul 19, 2007 at 11:20 PM

Instead of an IFS this is a regular iterative calculation
of the Julia in 25 parts.

Clear[nz, f0, g, arraym, a0, b0, sd, p]
a0 = 1 + 5/9;
sd = Sqrt[7];
b0 = 4/9;
f0[r_] := p*(r^3 + (a0)*r^2 - (r/(a0) - 1))/sd + (1 - p)*(b0*r^3 + r^2)
3D Julia of Mandelbrot like cubic Bezier
(*Julia with SQRT(x^2 + y^2) limited measure*)
(*by R. L. BAGULA 19 July 2007 © *)
numberOfz2ToEscape[z_] := Block[
	{escapeCount, nz = N[z], nzold = 0},
	For[
		escapeCount = 0,
		(Sqrt[Re[nz]^2 + Im[nz]^2] < 16) && (escapeCount <
           255) && (Abs[nz - nzold] > 10^(-3)),
		nzold = nz;
		nz = f0[nz];
		++escapeCount
	];
	escapeCount
]
FractalPureM[{{ReMin_, ReMax_, ReSteps_},
			 {ImMin_, ImMax_, ImSteps_}}] :=
		Table[
			numberOfz2ToEscape[x + y I],
			{y, ImMin, ImMax, (ImMax - ImMin)/ImSteps},
			{x, ReMin, ReMax, (ReMax - ReMin)/ReSteps}
		
	]
	
p = n/26;
Table[ListDensityPlot[FractalPureM[{{-3.5, 1.5, 100}, {-2.5, 2.5, 100}}],
                          Mesh -> False,
		                  AspectRatio -> Automatic,
		                 ColorFunction -> (Hue[2#] &)];, {n, 1, 25}] 
Respectfully, Roger L. Bagula
 11759Waterhill Road, Lakeside,Ca 92040-2905,tel: 619-5610814
:http://www.geocities.com/rlbagulatftn/Index.html
alternative email: rlbagula@[EMAIL PROTECTED]





 4 Posts in Topic:
Cubic Julia IFS models for for the Mandelbrot set
Roger Bagula <rlbagula  2007-07-18 20:10:33 
Iterative version of cubic Julia Mandelbrot like Bezier
Roger Bagula <rlbagula  2007-07-19 23:20:47 
Generalized Julia for the Mandelbrot set
Roger Bagula <rlbagula  2007-07-21 13:39:41 
Re: Cubic Julia IFS models for for the Mandelbrot set
Roger Bagula <rlbagula  2007-07-21 07:12:48 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat May 17 6:11:04 CDT 2008.