/third_party/boost/libs/math/test/ |
D | test_root_finding_concepts.cpp | 183 …result = boost::math::tools::newton_raphson_iterate(f2, x, 0.0, x, std::numeric_limits<double>::di… in BOOST_AUTO_TEST_CASE() 185 …result = boost::math::tools::newton_raphson_iterate(f3, x, 0.0, x, std::numeric_limits<double>::di… in BOOST_AUTO_TEST_CASE() 188 …result = boost::math::tools::newton_raphson_iterate(f4, x, 0.0, x, std::numeric_limits<double>::di… in BOOST_AUTO_TEST_CASE() 190 …result = boost::math::tools::newton_raphson_iterate(f5, x, 0.0, x, std::numeric_limits<double>::di… in BOOST_AUTO_TEST_CASE() 196 …result = boost::math::tools::newton_raphson_iterate([x](double z){ return std::make_pair(z * z * z… in BOOST_AUTO_TEST_CASE() 199 …result = boost::math::tools::newton_raphson_iterate([x](double z){ return std::make_tuple(z * z * … in BOOST_AUTO_TEST_CASE() 202 …result = boost::math::tools::newton_raphson_iterate([x](double z){ return boost::tuple<double, dou… in BOOST_AUTO_TEST_CASE() 204 …result = boost::math::tools::newton_raphson_iterate([x](double z){ return boost::fusion::tuple<dou… in BOOST_AUTO_TEST_CASE()
|
D | test_root_iterations.cpp | 173 …dr = boost::math::tools::newton_raphson_iterate(cbrt_functor_deriv(arg), guess, guess / 2, result … in BOOST_AUTO_TEST_CASE() 196 …dr = boost::math::tools::newton_raphson_iterate(cbrt_functor_deriv(arg), guess, result / 10, resul… in BOOST_AUTO_TEST_CASE() 219 …dr = boost::math::tools::newton_raphson_iterate(cbrt_functor_deriv(arg), guess, result / 10, resul… in BOOST_AUTO_TEST_CASE() 242 …dr = boost::math::tools::newton_raphson_iterate(cbrt_functor_deriv(arg), guess, result / 10, resul… in BOOST_AUTO_TEST_CASE() 280 …dr = boost::math::tools::newton_raphson_iterate(ibeta_roots_2<double, boost::math::policies::polic… in BOOST_AUTO_TEST_CASE() 293 …dr = boost::math::tools::newton_raphson_iterate(ibeta_roots_2<double, boost::math::policies::polic… in BOOST_AUTO_TEST_CASE() 309 …dr = boost::math::tools::newton_raphson_iterate(ibeta_roots_2<double, boost::math::policies::polic… in BOOST_AUTO_TEST_CASE()
|
D | test_roots.cpp | 224 …return boost::math::tools::newton_raphson_iterate(ibeta_roots_2<double, boost::math::policies::pol… in inverse_ibeta_newton() 255 …return -boost::math::tools::newton_raphson_iterate(ibeta_roots_2<double, boost::math::policies::po… in inverse_ibeta_newton_neg() 628 …BOOST_CHECK_THROW(boost::math::tools::newton_raphson_iterate([](double x) { return std::make_pair(… in test_failures() 629 …BOOST_CHECK_THROW(boost::math::tools::newton_raphson_iterate([](double x) { return std::make_pair(… in test_failures() 631 …BOOST_CHECK_THROW(boost::math::tools::newton_raphson_iterate([](double x) { return std::make_pair(… in test_failures()
|
/third_party/boost/boost/math/distributions/ |
D | inverse_gaussian.hpp | 359 using boost::math::tools::newton_raphson_iterate; in quantile() 361 …newton_raphson_iterate(inverse_gaussian_quantile_functor<RealType, Policy>(dist, p), guess, min, m… in quantile() 444 using boost::math::tools::newton_raphson_iterate; in quantile() 446 …newton_raphson_iterate(inverse_gaussian_quantile_complement_functor<RealType, Policy>(c.dist, q), … in quantile()
|
D | skew_normal.hpp | 559 …result = tools::newton_raphson_iterate(detail::skew_normal_mode_functor<RealType, Policy>(helper),… in mode() 676 …result = tools::newton_raphson_iterate(detail::skew_normal_quantile_functor<RealType, Policy>(dist… in quantile()
|
/third_party/boost/libs/math/example/ |
D | root_finding_fifth.cpp | 32 using boost::math::tools::newton_raphson_iterate; 295 T result = newton_raphson_iterate(fifth_functor_1stderiv<T>(x), guess, min, max, digits, it); in fifth_1deriv()
|
D | cardinal_cubic_b_spline_example.cpp | 107 time = boost::math::tools::newton_raphson_iterate(f_n, 1910.0, 1900.0, 2000.0, 20, iterations); in main()
|
D | root_finding_start_locations.cpp | 89 newton_raphson_iterate(cbrt_functor_deriv<T>(x), guess, min, max, get_digits, it); in cbrt_deriv() 233 …newton_raphson_iterate(elliptic_root_functor_1deriv<T>(arc, radius), guess, min, max, get_digits, … in elliptic_root_1deriv()
|
D | daubechies_coefficients.cpp | 27 using boost::math::tools::newton_raphson_iterate;
|
D | root_finding_example.cpp | 239 T result = newton_raphson_iterate(cbrt_functor_deriv<T>(x), guess, min, max, get_digits, it); in cbrt_deriv()
|
D | root_n_finding_algorithms.cpp | 266 …T result = newton_raphson_iterate(nth_root_functor_1deriv<N, T>(x), guess, min, max, get_digits, i… in nth_root_1deriv()
|
D | root_finding_algorithms.cpp | 272 T result = newton_raphson_iterate(cbrt_functor_deriv<T>(x), guess, min, max, get_digits, it); in cbrt_deriv()
|
D | root_elliptic_finding.cpp | 274 …T result = newton_raphson_iterate(elliptic_root_functor_1deriv<T>(arc, radius), guess, min, max, g… in elliptic_root_1deriv()
|
/third_party/boost/libs/math/test/compile_test/ |
D | tools_roots_inc_test.cpp | 36 …check_result<double>(boost::math::tools::newton_raphson_iterate<F2, double>(f2, d, d, d, i, max_it… in compile_and_link_test()
|
/third_party/boost/boost/math/special_functions/ |
D | legendre.hpp | 164 using boost::math::tools::newton_raphson_iterate; in legendre_p_zeros_imp() 205 const T x_nk = newton_raphson_iterate(f, x_nk_guess, in legendre_p_zeros_imp()
|
D | airy.hpp | 198 boost::math::tools::newton_raphson_iterate( in airy_ai_zero_imp() 250 boost::math::tools::newton_raphson_iterate( in airy_bi_zero_imp()
|
D | legendre_stieltjes.hpp | 215 const Real x_nk = boost::math::tools::newton_raphson_iterate(f, x_nk_guess, in zeros()
|
D | bessel.hpp | 408 boost::math::tools::newton_raphson_iterate( in cyl_bessel_j_zero_imp() 487 boost::math::tools::newton_raphson_iterate( in cyl_neumann_zero_imp()
|
/third_party/boost/libs/math/doc/roots/ |
D | roots.qbk | 13 T newton_raphson_iterate(F f, T guess, T min, T max, int digits); 16 T newton_raphson_iterate(F f, T guess, T min, T max, int digits, boost::uintmax_t& max_iter); 44 * `newton_raphson_iterate` performs second-order __newton.
|
D | root_finding_examples.qbk | 115 The result of [@boost:/libs/math/include/boost/math/tools/roots.hpp `newton_raphson_iterate`]
|
/third_party/boost/libs/math/example/daubechies_wavelets/ |
D | daubechies_coefficients.cpp | 35 using boost::math::tools::newton_raphson_iterate;
|
/third_party/boost/boost/math/tools/ |
D | roots.hpp | 236 T newton_raphson_iterate(F f, T guess, T min, T max, int digits, boost::uintmax_t& max_iter) BOOST_… in newton_raphson_iterate() function 366 inline T newton_raphson_iterate(F f, T guess, T min, T max, int digits) BOOST_NOEXCEPT_IF(policies:… in newton_raphson_iterate() function 369 return newton_raphson_iterate(f, guess, min, max, digits, m); in newton_raphson_iterate()
|
/third_party/boost/boost/math/special_functions/detail/ |
D | ibeta_inverse.hpp | 302 x = tools::newton_raphson_iterate( in temme_method_2_ibeta_inverse() 405 x = tools::newton_raphson_iterate( in temme_method_3_ibeta_inverse()
|
D | bessel_jy_zero.hpp | 138 const T z = boost::math::tools::newton_raphson_iterate( in equation_as_9_5_26()
|
/third_party/boost/libs/math/doc/overview/ |
D | roadmap.qbk | 69 * Fix bug in `newton_raphson_iterate` where we could terminate incorrectly under certain exceptiona… 82 * Improve heuristics used in newton_raphson_iterate. See [@https://github.com/boostorg/math/issues…
|