Skip to content

Brent's Method

Oscar Veliz edited this page Nov 5, 2020 · 12 revisions

For Brent's Minimization Method visit here.

Brent's Method video

The video covering the Brent-Dekker Method can be found here https://youtu.be/-bLSRiokgFk. Example code is given in the BrentDekker.hs file, written in Haskell, it compares Bisection, Secant Method, Dekker's Method, Inverse Quadratic Interpolation, and Brent's Method. You can run the program via CodingGround. To run the program locally have Haskell installed (Haskell.org) then type ghci BrentDekker.hsin the terminal in the directory where BrentDekker.hs is saved then type main to run. If you'd rather not use the terminal use an IDE instead like Haskell Platform or Geany to open, compile, and run the program.

Reference links: