roots_overview.qbk 972 B

1234567891011121314151617181920212223242526272829
  1. Several tools are provided to aid finding minima and roots of functions.
  2. Some __root_finding_without_derivatives methods are __bisection,
  3. __bracket_solve, including use of __root_finding_TOMS748.
  4. For __root_finding_with_derivatives the methods of
  5. __newton, __halley, and __schroder are implemented.
  6. For locating minima of a function, a __brent_minima_example is provided.
  7. There are several fully-worked __root_finding_examples, including:
  8. * __root_finding_example_cbrt_without_derivatives
  9. * __root_finding_example_cbrt_with_1_derivative
  10. * __root_finding_example_cbrt_with_2_derivatives
  11. [include roots_without_derivatives.qbk]
  12. [include roots.qbk]
  13. [include root_finding_examples.qbk]
  14. [include minima.qbk]
  15. [include root_comparison.qbk]
  16. [/ roots_overview.qbk
  17. Copyright 2015 John Maddock and Paul A. Bristow.
  18. Distributed under the Boost Software License, Version 1.0.
  19. (See accompanying file LICENSE_1_0.txt or copy at
  20. http://www.boost.org/LICENSE_1_0.txt).
  21. ]