Bisection Algorithm General Form
For my own personal, later reference.
Check input, stop if f(a) * f(b) > 0
while (result not accurate enough) c = (a + b) / 2 if (f(a) * f(c) > 0) a = c else b = c end if end while
With an error band of |a - b| / 2
Previous: Managing Wordpress installs with Subversion Next: A good day for Apple & Mac fans.

Hmmm… looks distinctly dodgy to me..
January 9th, 2006 at 8:06 pm