Home
last modified time | relevance | path

Searched refs:complex_newton (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/math/example/
Ddaubechies_coefficients.cpp28 using boost::math::tools::complex_newton;
69 Complex r = complex_newton(f, guess); in find_roots()
77 r = complex_newton(f, guess); in find_roots()
91 r = complex_newton(orig, r); in find_roots()
/third_party/boost/libs/math/example/daubechies_wavelets/
Ddaubechies_coefficients.cpp36 using boost::math::tools::complex_newton;
77 Complex r = complex_newton(f, guess); in find_roots()
85 r = complex_newton(f, guess); in find_roots()
99 r = complex_newton(orig, r); in find_roots()
/third_party/boost/libs/math/test/
Dtest_roots.cpp448 using boost::math::tools::complex_newton; in test_complex_newton()
458 Complex root = complex_newton(f, guess); in test_complex_newton()
464 root = complex_newton(f, guess); in test_complex_newton()
475 root = complex_newton(g, guess); in test_complex_newton()
486 root = complex_newton(g2, guess); in test_complex_newton()
500 root = complex_newton(g3, guess); in test_complex_newton()
509 root = complex_newton(g4, guess); in test_complex_newton()
521 using boost::math::tools::complex_newton; in test_daubechies_fails()
530 std::complex<double> root = complex_newton(f, guess); in test_daubechies_fails()
/third_party/boost/libs/math/doc/roots/
Droots.qbk33 …Complex complex_newton(F f, Complex guess, int max_iterations = std::numeric_limits<typename Compl…
49 * `complex_newton` performs Newton's method on complex-analytic functions.
181 An example usage of `complex_newton` is given in `examples/daubechies_coefficients.cpp`.
/third_party/boost/boost/math/tools/
Droots.hpp781 Complex complex_newton(F g, Complex guess, int max_iterations = std::numeric_limits<typename Comple… in complex_newton() function