2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00
Files
math/doc/roots/roots_overview.qbk
Nick 4ee83916c5 Differential evolution (#1062)
* Differential evolution

---------

Co-authored-by: Matt Borland <matt@mattborland.com>
2024-01-01 17:09:16 -08:00

33 lines
1.0 KiB
Plaintext

Several tools are provided to aid finding minima and roots of functions.
Some __root_finding_without_derivatives methods are __bisection,
__bracket_solve, including use of __root_finding_TOMS748.
For __root_finding_with_derivatives the methods of
__newton, __halley, and __schroder are implemented.
For locating minima of a function, a __brent_minima_example is provided.
There are several fully-worked __root_finding_examples, including:
* __root_finding_example_cbrt_without_derivatives
* __root_finding_example_cbrt_with_1_derivative
* __root_finding_example_cbrt_with_2_derivatives
[include roots_without_derivatives.qbk]
[include roots.qbk]
[include cubic_roots.qbk]
[include quartic_roots.qbk]
[include root_finding_examples.qbk]
[include minima.qbk]
[include differential_evolution.qbk]
[include root_comparison.qbk]
[/ roots_overview.qbk
Copyright 2015 John Maddock and Paul A. Bristow.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt).
]