Searched refs:complex_newton (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/libs/math/example/ |
D | daubechies_coefficients.cpp | 28 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/ |
D | daubechies_coefficients.cpp | 36 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/ |
D | test_roots.cpp | 448 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/ |
D | roots.qbk | 33 …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/ |
D | roots.hpp | 781 Complex complex_newton(F g, Complex guess, int max_iterations = std::numeric_limits<typename Comple… in complex_newton() function
|