home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n100 < prev    next >
Internet Message Format  |  1998-02-04  |  41KB

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #100
  4. Reply-To: fractint-digest
  5. Sender: owner-fractint-digest@lists.xmission.com
  6. Errors-To: owner-fractint-digest@lists.xmission.com
  7. Precedence: bulk
  8.  
  9.  
  10. fractint-digest       Thursday, February 5 1998       Volume 01 : Number 100
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Wed, 04 Feb 1998 11:42:48 -0600
  18. From: "Justin A. Kolodziej" <4wg7kolodzie@vms.csd.mu.edu>
  19. Subject: Re: (fractint) Is this just me, or...?
  20.  
  21. James Polley wrote:
  22. > I hate to disagree, but My copy of netscape is missing some subjects! And it has
  23. > some repeats!
  24. I'm not denying that, but the original complaint was that LookOut
  25. wouldn't read it _at all_!
  26.  
  27. Enough of this.  I think we know something got munged somewhere.
  28. - -- 
  29. Justin A. Kolodziej
  30. Why pay for an OS when you can get a clearly superior one for free?
  31. Justin Kolodziej is 4wg7kolodzie@vms.csd.mu.edu
  32. Marquette University is www.mu.edu
  33.  
  34. - -
  35. - ------------------------------------------------------------
  36. Thanks for using Fractint, The Fractals and Fractint Discussion List
  37. Post Message:   fractint@xmission.com
  38. Get Commands:   majordomo@xmission.com "help"
  39. Administrator:  twegner@phoenix.net
  40. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  41.  
  42. ------------------------------
  43.  
  44. Date: Wed, 4 Feb 1998 13:54:03 -0700 (MST)
  45. From: Kerry Mitchell <lkmitch@primenet.com>
  46. Subject: (fractint) comments in formulas and pars
  47.  
  48. It has been pointed out to me that I was a little verbose in my last
  49. formula submission, so that the important stuff about parameter setting is
  50. not visible in the formula part of the parameters screen (press "z" to
  51. enter parameters and the formula is listed in the lower half of the
  52. screen).  What is the consensus about this?  On the long-winded side, the
  53. comments may help elucidate what's happening, but may be best viewed in a
  54. separate editor.  You can always scroll through the listing with the
  55. control keys and arrow keys.  On the concise side, the formulas are
  56. smaller and the comments don't get in the way of seeing the actual coding.
  57.  
  58. I have tended to put a short description of the formula, definitions of
  59. the input variables, and suggested parameter values, in the formulas,
  60. along with explanations of what's happening when.  Is this too much?  Just
  61. enough?  Don't care?  Any thoughts or comments?
  62.  
  63. Kerry
  64.  
  65. - -------------------------------------------------------------------------------
  66. Kerry Mitchell
  67. lkmitch@primenet.com
  68. - -------------------------------------------------------------------------------
  69.  
  70.  
  71. - -
  72. - ------------------------------------------------------------
  73. Thanks for using Fractint, The Fractals and Fractint Discussion List
  74. Post Message:   fractint@xmission.com
  75. Get Commands:   majordomo@xmission.com "help"
  76. Administrator:  twegner@phoenix.net
  77. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  78.  
  79. ------------------------------
  80.  
  81. Date: Wed, 4 Feb 1998 15:59:48 -0500 (EST)
  82. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  83. Subject: Re: (fractint) Happy Valentine's Day!
  84.  
  85. Check this out...
  86.  
  87. HotGoldSpiral      { ; Basedon xlty_julia_sample
  88.                      ; Zoom & colors by PGD
  89.   reset=1960 type=formula formulafile=*.frm formulaname=xlty_jul
  90.   function=round/recip passes=1 center-mag=0.518253/-0.191221/16/1/90
  91.   params=0.2892573747165716/0.01339117893975959/4/1/0.1/0.1 float=y
  92.   maxiter=2000 inside=0 decomp=256 periodicity=0
  93.   colors=000zz0<158>K00K00L00<92>z00 cyclerange=0/255
  94.   }
  95.  
  96. frm:xlty_jul { ; Kerry Mitchell
  97.         ;
  98.         ; colors by how often x < y, where x & y are the
  99.         ; real & imaginary parts of the fractional part of
  100.         ; the iterate of the Julia set
  101.         ;
  102.         ; p1 = Julia parameter
  103.         ; real(p2) = bailout (try 4)
  104.         ; imag(p2) = color speed (try 1)
  105.         ; p3 = rounding factor (try 1)
  106.         ; fn1 = rounding function, either round() or trunc()
  107.         ; fn2 = arbitrary function of iterate (try log())
  108.         ; calculation uses variable zc, z used for coloring
  109.         ; use decomp=256
  110.         ;
  111.         zc=pixel, c=p1, iter=2, twopi=2*pi, count=0
  112.         maxr=real(p2), speed=imag(p2)*twopi*255/256
  113.         roundfac=p3:
  114.         ;
  115.         ; adjust iterate through arbitrary function and find
  116.         ;   fractional part
  117.         ;
  118.         temp=fn2(zc)/roundfac, frac=roundfac*(temp-fn1(temp))
  119.         ;
  120.         ; update counter if conditions are right
  121.         ;
  122.         if (real(frac)<imag(frac))
  123.           count=count+1
  124.           end if
  125.         ;
  126.         ; bailout
  127.         ;   scale counter into decomposition angle
  128.         ;   set "iteration done" flag (iter = -1)
  129.         ;
  130.         if ((|zc|>maxr)||(iter==maxit))
  131.           angle=speed*count/(iter-1)
  132.           z=cos(angle)+flip(sin(angle))
  133.           iter=-1
  134.         else
  135.           iter=iter+1
  136.           zc=sqr(zc)+c
  137.         endif
  138.         iter>0
  139.         }
  140.  
  141.  
  142.  
  143. - --
  144.     .*.  Friendship, companionship, love, and having fun are the reasons for
  145.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  146.     `*'  Send any and all mail with attachments to the hotmail address please.
  147. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  148.  
  149. - -
  150. - ------------------------------------------------------------
  151. Thanks for using Fractint, The Fractals and Fractint Discussion List
  152. Post Message:   fractint@xmission.com
  153. Get Commands:   majordomo@xmission.com "help"
  154. Administrator:  twegner@phoenix.net
  155. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  156.  
  157. ------------------------------
  158.  
  159. Date: Wed, 04 Feb 1998 15:14:49 -0600
  160. From: "Damien M. Jones" <dmj@fractalus.com>
  161. Subject: Re: (fractint) comments in formulas and pars
  162.  
  163. Kerry,
  164.  
  165.  - It has been pointed out to me that I was a little verbose in my last
  166.  - formula submission, so that the important stuff about parameter setting is
  167.  - not visible in the formula part of the parameters screen (press "z" to
  168.  - enter parameters and the formula is listed in the lower half of the
  169.  - screen).  What is the consensus about this?
  170.  
  171. I don't know about consensus, but how about putting brief descriptions of
  172. the parameters in the first section (which appears on the z screen) and
  173. then longer descriptions and explanations of what goes on further down?
  174. Interested parties will scroll; folks just wanting to plug numbers in will
  175. get terse help on what numbers do what.
  176.  
  177. Damien M. Jones   \\
  178. dmj@fractalus.com  \\  http://www.icd.com/tsd/  (temporary sanity designs)
  179.                     \\  http://www.fractalus.com/ (fractals are my hobby)
  180.  
  181.  
  182. - -
  183. - ------------------------------------------------------------
  184. Thanks for using Fractint, The Fractals and Fractint Discussion List
  185. Post Message:   fractint@xmission.com
  186. Get Commands:   majordomo@xmission.com "help"
  187. Administrator:  twegner@phoenix.net
  188. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  189.  
  190. ------------------------------
  191.  
  192. Date: Wed, 04 Feb 1998 16:30:02 -0800
  193. From: Peter Jakubowicz <pfjakub@earthlink.net>
  194. Subject: Re: (fractint) comments in formulas and pars
  195.  
  196. Kerry,
  197.  
  198. >I have tended to put a short description of the formula, definitions of
  199. >the input variables, and suggested parameter values, in the formulas,
  200. >along with explanations of what's happening when.  Is this too much?
  201.  
  202. No. I find your commenting your formulas extremely helpful, as well as your
  203. accompanying explanations. Figuring out what some of these uncommented
  204. formulas mean is about as fun as debugging someone's old COBOL code --
  205. altho I suppose one could look at it as a challenge. So, the more verbose
  206. the better I would say, at least in your case, for what that is worth.      
  207.  
  208.  
  209. - -
  210. - ------------------------------------------------------------
  211. Thanks for using Fractint, The Fractals and Fractint Discussion List
  212. Post Message:   fractint@xmission.com
  213. Get Commands:   majordomo@xmission.com "help"
  214. Administrator:  twegner@phoenix.net
  215. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  216.  
  217. ------------------------------
  218.  
  219. Date: Wed, 4 Feb 1998 13:27:08 -0800
  220. From: "Jay Hill"<jrhill@nosc.mil>
  221. Subject: Re: (fractint) comments in formulas and pars
  222.  
  223. Hi Kerry,
  224.  
  225. > On the long-winded side, the comments may help elucidate what's
  226. > happening, but may be best viewed in a separate editor.
  227. > You can always scroll through the listing with the control keys
  228. > and arrow keys.  On the concise side, the formulas are smaller
  229. > and the comments don't get in the way of seeing the actual coding.
  230.  
  231. You volumn of comments is fine. The only issue I would have is that
  232. the controlkey/arrorkey method of viewing is not well know. I just
  233. looked at the online help in Fractint and did not see it.   I'm
  234. pushing for tighter format in the first 10 lines.  I would like to
  235. see at least a line each for each parameter (that gets us
  236. down to line 7) and one each for the functions (that gets us to line
  237. 10). And there are ten available.  The first line should identify the
  238. author
  239. and date.   Next in priority to show up in the ten lines would be items
  240. relating to what can be set in other windows, like X, which must be
  241. known to use the formula correctly.
  242.  
  243. The really well documented formulas coming to the list have a style
  244. which includes early blank lines, rows of ************ and so on which
  245. I feel are fine down in the body. But up in the quick look window they
  246. only push the important info off the bottom.  Yes, you can scroll, but
  247. this is not well known.  It is after all, only in v19.6.
  248.  
  249. Jay
  250.  
  251.  
  252.  
  253.  
  254. - -
  255. - ------------------------------------------------------------
  256. Thanks for using Fractint, The Fractals and Fractint Discussion List
  257. Post Message:   fractint@xmission.com
  258. Get Commands:   majordomo@xmission.com "help"
  259. Administrator:  twegner@phoenix.net
  260. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  261.  
  262. ------------------------------
  263.  
  264. Date: Wed, 4 Feb 1998 17:07:20 EST
  265. From: Nature102@aol.com
  266. Subject: Re: (fractint) list volume, pars, attachments, a solution?
  267.  
  268. In a message dated 2-3-98 11:33:05 PM Central Standard Time,
  269. bhyde@connectu.net writes:
  270.  
  271. << I actually like the discussion posts. It's a whole lot better to have a
  272.  high list volume and discussion than a cold, impersonal list with two or
  273.  three messages a month. >>
  274.  
  275.   Yah, I agree with this. I really dislike discussion places with just a bunch
  276. of robots talking. (::Robot voice:: "Here is a for-mu-la I just made." "The i-
  277. ter-a-tion count has too ma-ny whip-pet grom-mets in it." "The prob-lem needs
  278. to be fixed by sum-mon-ing an ex-or-cist for Fract-int." "010011001101101."
  279. :-P) I really prefer to read mail by real people with real emotions and real
  280. thoughts, and not just some random collection of letters, dots, and little @
  281. thingies who might just be computer programs for all I know. :-P
  282.  
  283. - -
  284. - ------------------------------------------------------------
  285. Thanks for using Fractint, The Fractals and Fractint Discussion List
  286. Post Message:   fractint@xmission.com
  287. Get Commands:   majordomo@xmission.com "help"
  288. Administrator:  twegner@phoenix.net
  289. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  290.  
  291. ------------------------------
  292.  
  293. Date: Wed, 4 Feb 1998 14:11:55 -0800
  294. From: "Jay Hill"<jrhill@nosc.mil>
  295. Subject: Re: (fractint) M-set area: an Idea
  296.  
  297. Mrvn wrote,
  298.  
  299. >By the way, what are the upper and lower bounds? And how are they
  300. >calculated?
  301. > I know that it can be done by brute force calculating every pixel and
  302. > counting,
  303.  
  304. See http://home.earthlink.net/~mrob/-muency-/pixelcounting.html
  305.  
  306. > but some sort of speedup might be used also.
  307.  
  308. See the state of the art here (the lower bound is 1.5063036).
  309. http://www.geocities.com/CapeCanaveral/Lab/3825/Period-Area-16.html
  310.  
  311. > Of course Guessing, tesseral and boundary are out of question,
  312. > because they don't give exact results. But what about distance
  313. > estimation and cyclic checks?
  314.  
  315. See http://inls.ucsd.edu/y/Complex/area.ps.Z
  316.  
  317. In 1993 I made this formula for the period 1 component for
  318.  
  319. z := z^n + c
  320.  
  321. The component is a cycloid, so the area is an exact lower bound for
  322. the total area.   For large n, the area approaches pi.
  323.  
  324. Area of period 1 is (n+1)pi/n^((n+1)/(n-1))
  325.  
  326. An upper bound would be pi.
  327.  
  328. Jay
  329.  
  330.  
  331.  
  332.  
  333. - -
  334. - ------------------------------------------------------------
  335. Thanks for using Fractint, The Fractals and Fractint Discussion List
  336. Post Message:   fractint@xmission.com
  337. Get Commands:   majordomo@xmission.com "help"
  338. Administrator:  twegner@phoenix.net
  339. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  340.  
  341. ------------------------------
  342.  
  343. Date: Wed, 4 Feb 1998 17:18:18 -0500 (EST)
  344. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  345. Subject: (fractint) Fractint 19.6 bug!
  346.  
  347. I found a bug in Fractint 19.6. It looks like it suffers some kind of
  348. internal error when given the following syntactically correct formula:
  349.  
  350.  
  351. Explode_M_2 {
  352.   c=pixel
  353.   z=0
  354.   ; Find critical point using Newton's method.
  355.   c2=2*c
  356.   z2=z+2
  357.   s=sqr(z2)
  358.   t=z2*s
  359.   ez=exp(z)
  360.   func=t*ez-c2
  361.   der=3*s*ez+t*ez
  362.   z=z-func/der
  363.   z2=z+2
  364.   s=sqr(z2)
  365.   t=z2*s
  366.   ez=exp(z)
  367.   func=t*ez-c2
  368.   der=3*s*ez+t*ez
  369.   z=z-func/der
  370.   z2=z+2
  371.   s=sqr(z2)
  372.   t=z2*s
  373.   ez=exp(z)
  374.   func=t*ez-c2
  375.   der=3*s*ez+t*ez
  376.   z=z-func/der
  377.   z2=z+2
  378.   s=sqr(z2)
  379.   t=z2*s
  380.   ez=exp(z)
  381.   func=t*ez-c2
  382.   der=3*s*ez+t*ez
  383.   z=z-func/der
  384.   z2=z+2
  385.   s=sqr(z2)
  386.   t=z2*s
  387.   ez=exp(z)
  388.   func=t*ez-c2
  389.   der=3*s*ez+t*ez
  390.   z=z-func/der
  391.   z2=z+2
  392.   s=sqr(z2)
  393.   t=z2*s
  394.   ez=exp(z)
  395.   func=t*ez-c2
  396.   der=3*s*ez+t*ez
  397.   z=z-func/der
  398.   z2=z+2
  399.   s=sqr(z2)
  400.   t=z2*s
  401.   ez=exp(z)
  402.   func=t*ez-c2
  403.   der=3*s*ez+t*ez
  404.   z=z-func/der
  405.   z2=z+2
  406.   s=sqr(z2)
  407.   t=z2*s
  408.   ez=exp(z)
  409.   func=t*ez-c2
  410.   der=3*s*ez+t*ez
  411.   z=z-func/der
  412.   z2=z+2
  413.   s=sqr(z2)
  414.   t=z2*s
  415.   ez=exp(z)
  416.   func=t*ez-c2
  417.   der=3*s*ez+t*ez
  418.   z=z-func/der
  419.   z2=z+2
  420.   s=sqr(z2)
  421.   t=z2*s
  422.   ez=exp(z)
  423.   func=t*ez-c2
  424.   der=3*s*ez+t*ez
  425.   z=z-func/der
  426.   z2=z+2
  427.   s=sqr(z2)
  428.   t=z2*s
  429.   ez=exp(z)
  430.   func=t*ez-c2
  431.   der=3*s*ez+t*ez
  432.   z=z-func/der
  433.   z2=z+2
  434.   s=sqr(z2)
  435.   t=z2*s
  436.   ez=exp(z)
  437.   func=t*ez-c2
  438.   der=3*s*ez+t*ez
  439.   z=z-func/der
  440.   z2=z+2
  441.   s=sqr(z2)
  442.   t=z2*s
  443.   ez=exp(z)
  444.   func=t*ez-c2
  445.   der=3*s*ez+t*ez
  446.   z=z-func/der
  447.   z2=z+2
  448.   s=sqr(z2)
  449.   t=z2*s
  450.   ez=exp(z)
  451.   func=t*ez-c2
  452.   der=3*s*ez+t*ez
  453.   z=z-func/der
  454.   z2=z+2
  455.   s=sqr(z2)
  456.   t=z2*s
  457.   ez=exp(z)
  458.   func=t*ez-c2
  459.   der=3*s*ez+t*ez
  460.   z=z-func/der
  461.   z2=z+2
  462.   s=sqr(z2)
  463.   t=z2*s
  464.   ez=exp(z)
  465.   func=t*ez-c2
  466.   der=3*s*ez+t*ez
  467.   z=z-func/der
  468.   z2=z+2
  469.   s=sqr(z2)
  470.   t=z2*s
  471.   ez=exp(z)
  472.   func=t*ez-c2
  473.   der=3*s*ez+t*ez
  474.   z=z-func/der
  475.   z2=z+2
  476.   s=sqr(z2)
  477.   t=z2*s
  478.   ez=exp(z)
  479.   func=t*ez-c2
  480.   der=3*s*ez+t*ez
  481.   z=z-func/der
  482.   z2=z+2
  483.   s=sqr(z2)
  484.   t=z2*s
  485.   ez=exp(z)
  486.   func=t*ez-c2
  487.   der=3*s*ez+t*ez
  488.   z=z-func/der
  489.   z2=z+2
  490.   s=sqr(z2)
  491.   t=z2*s
  492.   ez=exp(z)
  493.   func=t*ez-c2
  494.   der=3*s*ez+t*ez
  495.   z=z-func/der
  496.   z2=z+2
  497.   s=sqr(z2)
  498.   t=z2*s
  499.   ez=exp(z)
  500.   func=t*ez-c2
  501.   der=3*s*ez+t*ez
  502.   z=z-func/der
  503.   z2=z+2
  504.   s=sqr(z2)
  505.   t=z2*s
  506.   ez=exp(z)
  507.   func=t*ez-c2
  508.   der=3*s*ez+t*ez
  509.   z=z-func/der
  510.   z2=z+2
  511.   s=sqr(z2)
  512.   t=z2*s
  513.   ez=exp(z)
  514.   func=t*ez-c2
  515.   der=3*s*ez+t*ez
  516.   z=z-func/der
  517.   z2=z+2
  518.   s=sqr(z2)
  519.   t=z2*s
  520.   ez=exp(z)
  521.   func=t*ez-c2
  522.   der=3*s*ez+t*ez
  523.   z=z-func/der
  524.   z2=z+2
  525.   s=sqr(z2)
  526.   t=z2*s
  527.   ez=exp(z)
  528.   func=t*ez-c2
  529.   der=3*s*ez+t*ez
  530.   z=z-func/der
  531.   z2=z+2
  532.   s=sqr(z2)
  533.   t=z2*s
  534.   ez=exp(z)
  535.   func=t*ez-c2
  536.   der=3*s*ez+t*ez
  537.   z=z-func/der
  538.   z2=z+2
  539.   s=sqr(z2)
  540.   t=z2*s
  541.   ez=exp(z)
  542.   func=t*ez-c2
  543.   der=3*s*ez+t*ez
  544.   z=z-func/der
  545.   z2=z+2
  546.   s=sqr(z2)
  547.   t=z2*s
  548.   ez=exp(z)
  549.   func=t*ez-c2
  550.   der=3*s*ez+t*ez
  551.   z=z-func/der
  552.   z2=z+2
  553.   s=sqr(z2)
  554.   t=z2*s
  555.   ez=exp(z)
  556.   func=t*ez-c2
  557.   der=3*s*ez+t*ez
  558.   z=z-func/der
  559.   z2=z+2
  560.   s=sqr(z2)
  561.   t=z2*s
  562.   ez=exp(z)
  563.   func=t*ez-c2
  564.   der=3*s*ez+t*ez
  565.   z=z-func/der
  566.   z2=z+2
  567.   s=sqr(z2)
  568.   t=z2*s
  569.   ez=exp(z)
  570.   func=t*ez-c2
  571.   der=3*s*ez+t*ez
  572.   z=z-func/der
  573.   z2=z+2
  574.   s=sqr(z2)
  575.   t=z2*s
  576.   ez=exp(z)
  577.   func=t*ez-c2
  578.   der=3*s*ez+t*ez
  579.   z=z-func/der
  580.   z2=z+2
  581.   s=sqr(z2)
  582.   t=z2*s
  583.   ez=exp(z)
  584.   func=t*ez-c2
  585.   der=3*s*ez+t*ez
  586.   z=z-func/der
  587.   z2=z+2
  588.   s=sqr(z2)
  589.   t=z2*s
  590.   ez=exp(z)
  591.   func=t*ez-c2
  592.   der=3*s*ez+t*ez
  593.   z=z-func/der
  594.   z2=z+2
  595.   s=sqr(z2)
  596.   t=z2*s
  597.   ez=exp(z)
  598.   func=t*ez-c2
  599.   der=3*s*ez+t*ez
  600.   z=z-func/der
  601.   z2=z+2
  602.   s=sqr(z2)
  603.   t=z2*s
  604.   ez=exp(z)
  605.   func=t*ez-c2
  606.   der=3*s*ez+t*ez
  607.   z=z-func/der
  608.   z2=z+2
  609.   s=sqr(z2)
  610.   t=z2*s
  611.   ez=exp(z)
  612.   func=t*ez-c2
  613.   der=3*s*ez+t*ez
  614.   z=z-func/der
  615.   z2=z+2
  616.   s=sqr(z2)
  617.   t=z2*s
  618.   ez=exp(z)
  619.   func=t*ez-c2
  620.   der=3*s*ez+t*ez
  621.   z=z-func/der
  622.   z2=z+2
  623.   s=sqr(z2)
  624.   t=z2*s
  625.   ez=exp(z)
  626.   func=t*ez-c2
  627.   der=3*s*ez+t*ez
  628.   z=z-func/der
  629.   z2=z+2
  630.   s=sqr(z2)
  631.   t=z2*s
  632.   ez=exp(z)
  633.   func=t*ez-c2
  634.   der=3*s*ez+t*ez
  635.   z=z-func/der
  636.   z2=z+2
  637.   s=sqr(z2)
  638.   t=z2*s
  639.   ez=exp(z)
  640.   func=t*ez-c2
  641.   der=3*s*ez+t*ez
  642.   z=z-func/der
  643.   z2=z+2
  644.   s=sqr(z2)
  645.   t=z2*s
  646.   ez=exp(z)
  647.   func=t*ez-c2
  648.   der=3*s*ez+t*ez
  649.   z=z-func/der
  650.   z2=z+2
  651.   s=sqr(z2)
  652.   t=z2*s
  653.   ez=exp(z)
  654.   func=t*ez-c2
  655.   der=3*s*ez+t*ez
  656.   z=z-func/der
  657.   z2=z+2
  658.   s=sqr(z2)
  659.   t=z2*s
  660.   ez=exp(z)
  661.   func=t*ez-c2
  662.   der=3*s*ez+t*ez
  663.   z=z-func/der
  664.   z2=z+2
  665.   s=sqr(z2)
  666.   t=z2*s
  667.   ez=exp(z)
  668.   func=t*ez-c2
  669.   der=3*s*ez+t*ez
  670.   z=z-func/der
  671.   z2=z+2
  672.   s=sqr(z2)
  673.   t=z2*s
  674.   ez=exp(z)
  675.   func=t*ez-c2
  676.   der=3*s*ez+t*ez
  677.   z=z-func/der
  678.   z2=z+2
  679.   s=sqr(z2)
  680.   t=z2*s
  681.   ez=exp(z)
  682.   func=t*ez-c2
  683.   der=3*s*ez+t*ez
  684.   z=z-func/der
  685.   z2=z+2
  686.   s=sqr(z2)
  687.   t=z2*s
  688.   ez=exp(z)
  689.   func=t*ez-c2
  690.   der=3*s*ez+t*ez
  691.   z=z-func/der
  692.   z2=z+2
  693.   s=sqr(z2)
  694.   t=z2*s
  695.   ez=exp(z)
  696.   func=t*ez-c2
  697.   der=3*s*ez+t*ez
  698.   z=z-func/der
  699.   z2=z+2
  700.   s=sqr(z2)
  701.   t=z2*s
  702.   ez=exp(z)
  703.   func=t*ez-c2
  704.   der=3*s*ez+t*ez
  705.   z=z-func/der
  706.   :
  707.   z=exp(z)+c/sqr(z+2),
  708.   real(z)<=900000
  709. }
  710.  
  711.  
  712. When this formula is selected from the formula screen, it buzzes and
  713. prints a red error box containing this garbage, which makes no sense to
  714. me, does not seem to refer to any actual error in the formula, and which
  715. must be the manifestation of some kind of a bug.
  716.  
  717.   Error(7):  Table overflow
  718.     ...(z),func=t*ez-c2,der=3*s*ez+t*ez,z=z-func/der,z2=z+2,s=sqr(z2),t=z...
  719.                                ^
  720.  
  721.   Any key to continue...
  722.  
  723.  
  724. Please issue a bugfix release (19.7? 19.61?) ASDAP correcting this, as
  725. well as the video mode screen bug where setting a new key combo corrupts
  726. fractint.cfg, and the problem with occasional hangs rendering formula
  727. types at 1024x768 and lerger. (I don't really want to wait until 20.0
  728. towork on this formula!)
  729.  
  730.  
  731. - --
  732.     .*.  Friendship, companionship, love, and having fun are the reasons for
  733.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  734.     `*'  Send any and all mail with attachments to the hotmail address please.
  735. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  736.  
  737. - -
  738. - ------------------------------------------------------------
  739. Thanks for using Fractint, The Fractals and Fractint Discussion List
  740. Post Message:   fractint@xmission.com
  741. Get Commands:   majordomo@xmission.com "help"
  742. Administrator:  twegner@phoenix.net
  743. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  744.  
  745. ------------------------------
  746.  
  747. Date: Wed, 4 Feb 1998 17:15:58 EST
  748. From: TRMoe@aol.com
  749. Subject: Re: (fractint) comments in formulas and pars
  750.  
  751. Hi Kerry-
  752.  
  753. In a message dated 98-02-04 15:56:58 EST, you write:
  754.  
  755. << I have tended to put a short description of the formula, definitions of
  756.  the input variables, and suggested parameter values, in the formulas,
  757.  along with explanations of what's happening when.  >>
  758.  
  759. count me among those who appreciate and value your comments.  I also agree
  760. with the idea that any parameters necessary to make the formula work are
  761. better placed early so they are visible without scrolling.  That will keep
  762. those who haven't spotted the "control - arrow keys" instruction yet from
  763. getting frustrated.  As for the rest, I like having the formula explained in
  764. your step by step fashion.  It is a great help to the less numerate (such as
  765. myself) among us.   Thank you.  Tom
  766.  
  767. - -
  768. - ------------------------------------------------------------
  769. Thanks for using Fractint, The Fractals and Fractint Discussion List
  770. Post Message:   fractint@xmission.com
  771. Get Commands:   majordomo@xmission.com "help"
  772. Administrator:  twegner@phoenix.net
  773. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  774.  
  775. ------------------------------
  776.  
  777. Date: Wed, 4 Feb 1998 17:35:33 EST
  778. From: Nature102@aol.com
  779. Subject: Re: (fractint) Fractint 19.6 bug!
  780.  
  781. In a message dated 2-4-98 4:19:35 PM Central Standard Time,
  782. ao950@freenet.carleton.ca writes:
  783.  
  784. << When this formula is selected from the formula screen, it buzzes and
  785.  prints a red error box containing this garbage, which makes no sense to
  786.  me, does not seem to refer to any actual error in the formula, and which
  787.  must be the manifestation of some kind of a bug.
  788.  
  789.    Error(7):  Table overflow
  790.      ...(z),func=t*ez-c2,der=3*s*ez+t*ez,z=z-func/der,z2=z+2,s=sqr(z2),t=z...
  791.                                 ^
  792.  
  793.    Any key to continue... >>
  794.  
  795.   I think that means it just ran out of memory to use the formula or
  796. something. That formula's kind of big. :-P
  797.  
  798. - -
  799. - ------------------------------------------------------------
  800. Thanks for using Fractint, The Fractals and Fractint Discussion List
  801. Post Message:   fractint@xmission.com
  802. Get Commands:   majordomo@xmission.com "help"
  803. Administrator:  twegner@phoenix.net
  804. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  805.  
  806. ------------------------------
  807.  
  808. Date: Thu, 05 Feb 1998 12:20:07 +1300
  809. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  810. Subject: Re: (fractint) list volume, pars, attachments, a solution? 
  811.  
  812. At 10:17 04/02/98 -0700, Rich Thomson wrote:
  813. >
  814. >In article <3.0.3.32.19980204131557.0075aaac@nznet.gen.nz> ,
  815. >    "Morgan L. Owens" <packrat@nznet.gen.nz>  writes:
  816. >
  817. >> [moderation software accepting archive query requests]
  818. >
  819. >I don't want the moderation software to become too complicated; I'd
  820. >rather use existing tools wherever I can.
  821. >
  822. I'll agree with this. One of the Twelve Networking Truths [RFC1925] states:
  823.  
  824. (12) In protocol design, perfection has been reached not when there
  825.      is nothing left to add, but when there is nothing left to take
  826.      away.
  827.  
  828. MLO
  829.  
  830.  
  831. - -
  832. - ------------------------------------------------------------
  833. Thanks for using Fractint, The Fractals and Fractint Discussion List
  834. Post Message:   fractint@xmission.com
  835. Get Commands:   majordomo@xmission.com "help"
  836. Administrator:  twegner@phoenix.net
  837. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  838.  
  839. ------------------------------
  840.  
  841. Date: Thu, 05 Feb 1998 12:36:30 +1300
  842. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  843. Subject: Re: (fractint) Fractint 19.6 bug!
  844.  
  845. At 17:35 04/02/98 EST, Nature102@aol.com wrote:
  846. >In a message dated 2-4-98 4:19:35 PM Central Standard Time,
  847. >ao950@freenet.carleton.ca writes:
  848. >
  849. ><<
  850. >   Error(7):  Table overflow
  851. >     ...(z),func=t*ez-c2,der=3*s*ez+t*ez,z=z-func/der,z2=z+2,s=sqr(z2),t=z...
  852. >                                ^
  853. >   Any key to continue... >>
  854. >
  855. >  I think that means it just ran out of memory to use the formula or
  856. >something. That formula's kind of big. :-P
  857. >
  858. I used to see this error a lot before the formula parser was rewritten for
  859. - - what version was it? 19.3? It was always because I was trying something
  860. too big; trying to rewrite things to make them much shorter helped, though
  861. offhand I can't see much room for abbreviation in your example: perhaps
  862. fewer preiterations? Or how about bundling the preiteration code into the
  863. loop itself, with a flag to switch from the prep code to the loop after a
  864. certain number of iterations? Something that smells like "if
  865. (iterationcount<=preplimit [prep code] else [loop code] endif
  866. iterationcount=iterationcount+1". 
  867.  
  868. I think the error message could be better worded, however. "Memory
  869. overflow" or "Formula too large" perhaps.
  870.  
  871. MLO
  872.  
  873.  
  874.  
  875. - -
  876. - ------------------------------------------------------------
  877. Thanks for using Fractint, The Fractals and Fractint Discussion List
  878. Post Message:   fractint@xmission.com
  879. Get Commands:   majordomo@xmission.com "help"
  880. Administrator:  twegner@phoenix.net
  881. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  882.  
  883. ------------------------------
  884.  
  885. Date: Wed, 4 Feb 1998 16:19:55 -0800
  886. From: "Jay Hill"<jrhill@nosc.mil>
  887. Subject: Re: (fractint) Fractint 19.6 bug!
  888.  
  889. Hi Paul,
  890.  
  891. Try this (while they debug Fractint  :-]  )   which solves for the
  892. critical point another way.  The .2 and .8 are a damping factor
  893. which seems to work well. Convergence is about as fast
  894. as Newton. My formula gets you to about 8 digits in 8 steps.
  895. Newton works better as a polisher, since it does great in the
  896. finish.  It finishes with full accurage in my C++ tests (except
  897. when it blows away my DOS window  :-(.  I have included a
  898. sample view into this space.  Have fun!
  899.  
  900. Jay
  901.  
  902. frm:Explode_M_2j   { ; by Jay Hill, 1998
  903.                      ; after Paul Derbyshire
  904.   c=pixel
  905.   z=0  ; eight steps of Jay's formula
  906. z=.2*z+.8*(-2+exp((log(2*c)-z)/3))
  907. z=.2*z+.8*(-2+exp((log(2*c)-z)/3))
  908. z=.2*z+.8*(-2+exp((log(2*c)-z)/3))
  909. z=.2*z+.8*(-2+exp((log(2*c)-z)/3))
  910. z=.2*z+.8*(-2+exp((log(2*c)-z)/3))
  911. z=.2*z+.8*(-2+exp((log(2*c)-z)/3))
  912. z=.2*z+.8*(-2+exp((log(2*c)-z)/3))
  913. z=.2*z+.8*(-2+exp((log(2*c)-z)/3))
  914. ; finish with one of Derbyshire's Newton steps
  915.   z2=z+2
  916.   s=sqr(z2)
  917.   t=z2*s
  918.   ez=exp(z)
  919.   func=t*ez-2*c
  920.   der=3*s*ez+t*ez
  921.   z=z-func/der
  922.  :   ; Derbyshire's formula
  923.   z=exp(z)+c/sqr(z+2),
  924.   real(z)<=900000
  925. }
  926.  
  927. explos             { ; by Jay Hill, 1998
  928.   reset=1960 type=formula formulafile=explode.frm
  929.   formulaname=Explode_M_2j
  930.   center-mag=-8.88178e-015/5.32907e-015/0.05827815 float=y
  931.   maxiter=2000 inside=bof61
  932.   periodicity=0
  933.   colors=@default
  934.   }
  935. explos2            { ; by Jay Hill, 1998
  936.   reset=1960 type=formula formulafile=explode.frm
  937.   formulaname=explode_m_2j center-mag=-7.45891/-0.344906/0.1655629
  938.   float=y maxiter=2000 inside=bof61 periodicity=0 colors=@default
  939.   }
  940.  
  941.  
  942.  
  943. - -
  944. - ------------------------------------------------------------
  945. Thanks for using Fractint, The Fractals and Fractint Discussion List
  946. Post Message:   fractint@xmission.com
  947. Get Commands:   majordomo@xmission.com "help"
  948. Administrator:  twegner@phoenix.net
  949. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  950.  
  951. ------------------------------
  952.  
  953. Date: Wed, 04 Feb 1998 16:30:31 -0800
  954. From: Mark Christenson <mchris@hooked.net>
  955. Subject: Re: (fractint) Fractint 19.6 bug!
  956.  
  957. At 12:36 PM 2/5/98 +1300, Morgan L. Owens wrote:
  958. >At 17:35 04/02/98 EST, Nature102@aol.com wrote:
  959. >>In a message dated 2-4-98 4:19:35 PM Central Standard Time,
  960. >>ao950@freenet.carleton.ca writes:
  961. >> ...
  962. >I used to see this error a lot before the formula parser was rewritten for
  963. >- what version was it? 19.3? It was always because I was trying something
  964. >too big; trying to rewrite things to make them much shorter helped, though
  965. >offhand I can't see much room for abbreviation in your example: perhaps
  966. >fewer preiterations? 
  967. > ...
  968.  
  969. Maybe it's already been addressed (I'm still relatively new to the list),
  970. but I have to ask an obvious question: is iteration loop support being 
  971. planned for the next version of Fractint? 
  972.  
  973.  
  974. Bud
  975.  
  976.  
  977. - -
  978. - ------------------------------------------------------------
  979. Thanks for using Fractint, The Fractals and Fractint Discussion List
  980. Post Message:   fractint@xmission.com
  981. Get Commands:   majordomo@xmission.com "help"
  982. Administrator:  twegner@phoenix.net
  983. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  984.  
  985. ------------------------------
  986.  
  987. Date: Wed, 04 Feb 1998 16:39:23 -0800
  988. From: Mark Christenson <mchris@hooked.net>
  989. Subject: Re: (fractint) Fractint 19.6 bug!
  990.  
  991. I meant *nested* iteration loops. Obviously, Fractint *already*
  992. supports iteration loops!  ;o)
  993.  
  994. Bud
  995.  
  996.  
  997.  
  998. - -
  999. - ------------------------------------------------------------
  1000. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1001. Post Message:   fractint@xmission.com
  1002. Get Commands:   majordomo@xmission.com "help"
  1003. Administrator:  twegner@phoenix.net
  1004. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1005.  
  1006. ------------------------------
  1007.  
  1008. Date: Wed, 04 Feb 1998 17:53:34 -0700
  1009. From: Rich Thomson <rthomson@ptc.com>
  1010. Subject: Re: (fractint) Fractint 19.6 bug! 
  1011.  
  1012. In article <199802050028.QAA22793@mom.hooked.net> ,
  1013.     Mark Christenson <mchris@hooked.net>  writes:
  1014. > is iteration loop support being 
  1015. > planned for the next version of Fractint? 
  1016.  
  1017. Its generally been decided that making fractint's iteration counter
  1018. visible inside formulas is a Good Thing.  Also, there has been talk of
  1019. adding do/while for/next style looping constructs to the formula
  1020. parser for looping.  Is that the kind of thing you want?
  1021. - --
  1022.                                                Rich Thomson
  1023.                                                rthomson@ptc.com
  1024.  
  1025. - -
  1026. - ------------------------------------------------------------
  1027. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1028. Post Message:   fractint@xmission.com
  1029. Get Commands:   majordomo@xmission.com "help"
  1030. Administrator:  twegner@phoenix.net
  1031. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1032.  
  1033. ------------------------------
  1034.  
  1035. Date: Wed, 4 Feb 1998 17:08:38 -0800
  1036. From: "Jay Hill"<jrhill@nosc.mil>
  1037. Subject: Re: (fractint) Fractint 19.6 bug!
  1038.  
  1039. Hi Paul,
  1040.  
  1041. I wrote:
  1042. > Try this  which solves for the critical point another way.
  1043.  
  1044. I have run a few more tests. There are multiple roots for
  1045. some values of c, and my algorithm does find different
  1046. roots sometimes. But that should not be a problem. The
  1047. formulation gets a dozen digits or more, your milage
  1048. may vary.
  1049.  
  1050. Oh, and there is an optimization which should be stuck
  1051. back into your formula,  putting c2=2*c.   Note the formula
  1052. name change.   I wonder how much optimization Fractint
  1053. does like this?
  1054.  
  1055. Jay
  1056.  
  1057. Explode_M_2J (xaxis){ ; by Jay Hill 1998
  1058.                      ; after Paul Derbyshire
  1059.   c=pixel, c2=2*c,   z=0
  1060. ; eight steps of Jay's formula for critical point
  1061. z=.2*z+.8*(-2+exp((log(c2)-z)/3))
  1062. z=.2*z+.8*(-2+exp((log(c2)-z)/3))
  1063. z=.2*z+.8*(-2+exp((log(c2)-z)/3))
  1064. z=.2*z+.8*(-2+exp((log(c2)-z)/3))
  1065. z=.2*z+.8*(-2+exp((log(c2)-z)/3))
  1066. z=.2*z+.8*(-2+exp((log(c2)-z)/3))
  1067. z=.2*z+.8*(-2+exp((log(c2)-z)/3))
  1068. z=.2*z+.8*(-2+exp((log(c2)-z)/3))
  1069. ; finish with one of Derbyshire's Newton steps
  1070.   z2=z+2
  1071.   s=sqr(z2)
  1072.   t=z2*s
  1073.   ez=exp(z)
  1074.   func=t*ez-c2
  1075.   der=3*s*ez+t*ez
  1076.   z=z-func/der
  1077.  :   ; Paul Derbyshire's formula
  1078.   z=exp(z)+c/sqr(z+2),
  1079.   real(z)<=900000
  1080. }
  1081.  
  1082. explos3            { ; by Jay Hill 1998
  1083.                      ; after Paul Derbyshire
  1084.   reset=1960 type=formula formulafile=explode.frm
  1085.   formulaname=explode_m_2J center-mag=-2.60858/5.77006/2.143265
  1086.   float=y maxiter=2000 inside=bof61 decomp=256 periodicity=0
  1087.   colors=000000<28>uISwJTwJT<45>wv1ww0vw1<45\
  1088.   >2du0cw0cw<62>mAwmAwlAv<58>111\
  1089.   000000000
  1090.   }
  1091.  
  1092.  
  1093.  
  1094. - -
  1095. - ------------------------------------------------------------
  1096. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1097. Post Message:   fractint@xmission.com
  1098. Get Commands:   majordomo@xmission.com "help"
  1099. Administrator:  twegner@phoenix.net
  1100. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1101.  
  1102. ------------------------------
  1103.  
  1104. Date: Thu, 5 Feb 1998 00:20:20 -0500 (EST)
  1105. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  1106. Subject: Re: (fractint) Fractint 19.6 bug!
  1107.  
  1108. [Odd: I got this reply before I got my copy of the original!]
  1109.  
  1110. >  I think that means it just ran out of memory to use the formula or
  1111. >something. That formula's kind of big. :-P
  1112.  
  1113. Out of memory, my left parietal lobe. I have 32 megabytes EDO in this
  1114. sucker, and then there's my swap.
  1115.  
  1116. - --
  1117.     .*.  Friendship, companionship, love, and having fun are the reasons for
  1118.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  1119.     `*'  Send any and all mail with attachments to the hotmail address please.
  1120. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  1121.  
  1122. - -
  1123. - ------------------------------------------------------------
  1124. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1125. Post Message:   fractint@xmission.com
  1126. Get Commands:   majordomo@xmission.com "help"
  1127. Administrator:  twegner@phoenix.net
  1128. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1129.  
  1130. ------------------------------
  1131.  
  1132. Date: Thu, 5 Feb 1998 00:22:04 -0500 (EST)
  1133. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  1134. Subject: (fractint) Simplgif...
  1135.  
  1136. Well, I finally ran across the infamous simplgif bug myself: a certain
  1137. 4-image fractmig turned into a bogus GIF89a under simplgif; the file was a
  1138. valid gif89a but everything from about line 1000 down was missing.
  1139.  
  1140. I yanked the fixed simplgif from Tim's FTP directory on phoenix, and it
  1141. worked perfectly on the same image... way to go, Tim!... :-)
  1142.  
  1143.  
  1144. - --
  1145.     .*.  Friendship, companionship, love, and having fun are the reasons for
  1146.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  1147.     `*'  Send any and all mail with attachments to the hotmail address please.
  1148. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  1149.  
  1150. - -
  1151. - ------------------------------------------------------------
  1152. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1153. Post Message:   fractint@xmission.com
  1154. Get Commands:   majordomo@xmission.com "help"
  1155. Administrator:  twegner@phoenix.net
  1156. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1157.  
  1158. ------------------------------
  1159.  
  1160. Date: Thu, 5 Feb 1998 00:33:02 -0500 (EST)
  1161. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  1162. Subject: Re: (fractint) Fractint 19.6 bug!
  1163.  
  1164. >Try this (while they debug Fractint  :-]  )   which solves for the
  1165. >critical point another way.  The .2 and .8 are a damping factor
  1166. >which seems to work well. Convergence is about as fast
  1167. >as Newton. My formula gets you to about 8 digits in 8 steps.
  1168. >Newton works better as a polisher, since it does great in the
  1169. >finish.  It finishes with full accurage in my C++ tests (except
  1170. >when it blows away my DOS window  :-(.  I have included a
  1171. >sample view into this space.  Have fun!
  1172.  
  1173. [deletia]
  1174.  
  1175. Thanks a bunch! But...how the freaking hell does it work? :-)
  1176.  
  1177. - --
  1178.     .*.  Friendship, companionship, love, and having fun are the reasons for
  1179.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  1180.     `*'  Send any and all mail with attachments to the hotmail address please.
  1181. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  1182.  
  1183. - -
  1184. - ------------------------------------------------------------
  1185. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1186. Post Message:   fractint@xmission.com
  1187. Get Commands:   majordomo@xmission.com "help"
  1188. Administrator:  twegner@phoenix.net
  1189. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1190.  
  1191. ------------------------------
  1192.  
  1193. Date: Thu, 5 Feb 1998 00:41:38 -0500 (EST)
  1194. From: ao950@freenet.carleton.ca (Paul Derbyshire)
  1195. Subject: Re: (fractint) Fractint 19.6 bug!
  1196.  
  1197. >I wrote:
  1198. >> Try this  which solves for the critical point another way.
  1199. >
  1200. >I have run a few more tests. There are multiple roots for
  1201. >some values of c, and my algorithm does find different
  1202. >roots sometimes. But that should not be a problem. The
  1203. >formulation gets a dozen digits or more, your milage
  1204. >may vary.
  1205.  
  1206. Multiple roots??
  1207. All I did was take the exponential graph and add a bump somewhere west of
  1208. the origin. That should be the only critical point; there's also the
  1209. asymptotic value 0. Are you 100% sure your computation isn't either
  1210. finding preimages (not a problem) or converging incorrectly? (Newton can
  1211. sometimes converge to a point or a cycle that's not a root, for degree >=3
  1212. polynomials and other functions...)
  1213.  
  1214. I don't suppose you can reel off a particular value of c and two or more
  1215. of the multiple roots? :-)
  1216.  
  1217. >I wonder how much optimization Fractint does like this?
  1218.  
  1219. I don't know, and I don't think Tim is telling <vbg>
  1220.  
  1221.  
  1222.  
  1223. - --
  1224.     .*.  Friendship, companionship, love, and having fun are the reasons for
  1225.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  1226.     `*'  Send any and all mail with attachments to the hotmail address please.
  1227. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  1228.  
  1229. - -
  1230. - ------------------------------------------------------------
  1231. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1232. Post Message:   fractint@xmission.com
  1233. Get Commands:   majordomo@xmission.com "help"
  1234. Administrator:  twegner@phoenix.net
  1235. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1236.  
  1237. ------------------------------
  1238.  
  1239. Date: Thu, 5 Feb 1998 01:47:18 EST
  1240. From: MAksoy@aol.com
  1241. Subject: (fractint) Fractint Wish-  mousedriven parameter entry+ fractal preview on 1 screen
  1242.  
  1243. Dear Fractinters,
  1244.  
  1245. I've been thinking this over for a while - let me know what you think about
  1246. it! 
  1247.  
  1248.                             So many formulas - so little time!
  1249.  
  1250. As a new Fractint user working with formulas, I find that a major bottleneck
  1251. in obtaining interesting fractals involves finding the optimal parameter
  1252. settings (such as real and imaginary p1 values) to enter for a new formula.
  1253. Since this is impossible for most people to predict beforehand, much time is
  1254. spent typing in "best guess" values on the parameter screen, watching the
  1255. fractal render, and shuttling back to the parameter screen (z key) to repeat
  1256. the process again and again, an exercise in real patience even with a small
  1257. viewing window!  Moreover, being methodical is no guarantee that you'll find
  1258. the best parameter settings for neat images. For example, if you enter real p1
  1259. values in increments of 0.2, how do you know that you're not missing an abrupt
  1260. increase in fractal complexity (ie, an interesting image) between, say, 0.88
  1261. and 0.92?  And you can't depend on zero default values to yield a decent image
  1262. - - some listed formulas give an empty screen  at p1=0 (eg, REB004A in
  1263. fractint.frm). 
  1264.  
  1265. So, what I propose for a future version of Fractint is a mouse-driven,
  1266. streamlined interface with parameter entry and a small fractal preview window
  1267. all on the same screen, much like the orbits window (<o> key) mode in the
  1268. present version. In orbits mode, moving the cursor with the mouse to a given
  1269. point on an escape-time fractal image produces the <orbit> for that point in
  1270. the inset orbits window.
  1271.  
  1272. In my proposed interface, the monitor screen will be a real vs. imaginary
  1273. coordinate grid for parameter p1. Moving the cursor by mouse to a given point
  1274. on the screen will yield an on-the-fly rendering of the <fractal> for those p1
  1275. values, in a thumbnail window.  Since long formulae can slow down rendering,
  1276. this thumbnail window may have to be quite small, but even a 50 x 50 pixel
  1277. window should reveal the presence or absence of meaningful fractal detail.
  1278. Contrasty color maps will also help in this respect.  
  1279.  
  1280. The main idea is that by <simply moving the mouse> one could see realtime
  1281. changes in fractal structure across a <whole range> of real and imaginary p1
  1282. parameter values. All on 1 screen with no keyboard entry!
  1283.  
  1284. Additional refinements are possible. Instead of p1, the screen grid could be
  1285. changed to represent p2 or p3 values.  p2,p3 parameters could also be changed
  1286. by mouse using separate slider controls. Switching between functions (f1(n),
  1287. etc.) could still be done in the present way with the left and right cursor
  1288. keys. And if one has moved the mouse to a point on the screen which yields
  1289. interesting fractal detail, a click on the right mouse button could save the
  1290. setting as a par file.
  1291.  
  1292. This type of interface would allow a thurough and systematic screening of
  1293. parameter settings for a given formula more quickly and efficiently than with
  1294. the present setup.  After surveying the fractal "forest" in this manner, one
  1295. would have more time to zoom in on fractal "trees" of particular
  1296. interest...which is (at least to me) the "fun" part of fractal exploration!
  1297.  
  1298. - -
  1299. - ------------------------------------------------------------
  1300. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1301. Post Message:   fractint@xmission.com
  1302. Get Commands:   majordomo@xmission.com "help"
  1303. Administrator:  twegner@phoenix.net
  1304. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1305.  
  1306. ------------------------------
  1307.  
  1308. Date: Wed, 4 Feb 1998 23:08:10 -0800
  1309. From: "Jay Hill" <ehill1@san.rr.com>
  1310. Subject: Re: (fractint) M-set area: an Idea
  1311.  
  1312. Hi group,
  1313. Paul D. seems to be off the list, so here is a forward...................
  1314.  
  1315. >The component is a cycloid, so the area is an exact lower bound for
  1316. >the total area.   For large n, the area approaches pi.
  1317. >
  1318. >Area of period 1 is (n+1)pi/n^((n+1)/(n-1))
  1319. >
  1320. >An upper bound would be pi.
  1321.  
  1322. Son of a bitch! Because all the components except period 1 shrink with
  1323. increasing n, the area for the limit z^infinity+c is pi. (This suggests the
  1324. limit of the M-set as n goes to infinity is the closed unit disk.) Now if
  1325. the areas of the entire sets follow some scaling law, this could be
  1326. extrapolated from pi backwards to get the area of M to >perfect< precision.
  1327. One can use the area of the set for z+c, which is 0 (the M-set is the
  1328. point c=0), and the estimates for 2, 3, 4, 5, and pi, and match to a
  1329. function f(x) that is 0 at 0, approaches pi as x tends to +infinity,and
  1330. matches the estimated areas for the appropriate sets at x=2, 3, 4, 5.
  1331.  
  1332. - --
  1333.     .*.  Friendship, companionship, love, and having fun are the reasons for
  1334.  -()  <  life. All else; sex, money, fame, etc.; are just to get/express these.
  1335.     `*'  Send any and all mail with attachments to the hotmail address please.
  1336. Paul Derbyshire ao950@freenet.carleton.ca pgd73@hotmail.com
  1337.  
  1338.  
  1339. - -
  1340. - ------------------------------------------------------------
  1341. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1342. Post Message:   fractint@xmission.com
  1343. Get Commands:   majordomo@xmission.com "help"
  1344. Administrator:  twegner@phoenix.net
  1345. Unsubscribe:    majordomo@xmission.com "unsubscribe fractint"
  1346.  
  1347. ------------------------------
  1348.  
  1349. End of fractint-digest V1 #100
  1350. ******************************
  1351.  
  1352.