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 > Misery polynomi...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 1 Topic 201 of 206
Post > Topic >>

Misery polynomials

by Roger Bagula <rlbagula@[EMAIL PROTECTED] > Apr 30, 2008 at 11:29 AM

Short implicit plot of Mandelbrot set using Misiurewicz polynomial /
Points:
( this seems to give more interior detail of potential lines than an 
iterative method
and for the amount of detail is much faster as well)

Clear[f, g, h, x]
f[z_] = z2 + x
g = Join[{1}, ExpandAll[NestList[f, x, 5]]];
h = Union[Flatten[Table[Flatten[Table[If[n == m, {}, ExpandAll[g[[
         n]] - g[[m]]]], {m, 1, n}]], {n, 1, Length[g]}]]];
k = Flatten[Table[If[Apply[Plus, CoefficientList[D[h[[n]], {x, 1}],
               x]] == 0, {}, D[h[[n]], {x, 1}]], {n, 1, Length[h]}]]
Clear[x, y, a, b, f, z];
  nr = k /. x -> z
 p[z_] = Apply[Times, nr];
z = x + I*y;
 f[x_, y_] = Re[1/(p[z])];
  ContourPlot[ f[x,
           y], {x, -2.4, 1}, {y, -1.7, 1.7},
             PlotPoints -> {300, 300}, ImageSize ->
             600, ColorFunction -> (Hue[2#] &)]

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]





 1 Posts in Topic:
Misery polynomials
Roger Bagula <rlbagula  2008-04-30 11:29:06 

Post A Reply:
  Go here to Signup

AddThis Feed Button


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

Contact
tan12V112 Mon May 12 17:25:20 CDT 2008.