Searched refs:quadratic_roots (Results 1 – 6 of 6) sorted by relevance
/third_party/boost/libs/math/test/ |
D | test_roots.cpp | 543 using boost::math::tools::quadratic_roots; in test_solve_real_quadratic() 544 auto [x0, x1] = quadratic_roots<Real>(1, 0, -1); in test_solve_real_quadratic() 548 auto p = quadratic_roots((Real)7, (Real)0, (Real)0); in test_solve_real_quadratic() 553 p = quadratic_roots((Real)1, (Real)-14, (Real)49); in test_solve_real_quadratic() 565 p = quadratic_roots((Real)256, b, c); in test_solve_real_quadratic() 574 p = quadratic_roots<Real>((Real)94906265.625, (Real )-189812534, (Real)94906268.375); in test_solve_real_quadratic() 584 using boost::math::tools::quadratic_roots; in test_solve_int_quadratic() 585 auto [x0, x1] = quadratic_roots(1, 0, -1); in test_solve_int_quadratic() 589 auto p = quadratic_roots(7, 0, 0); in test_solve_int_quadratic() 594 p = quadratic_roots(1, -14, 49); in test_solve_int_quadratic() [all …]
|
/third_party/boost/boost/math/statistics/ |
D | signal_statistics.hpp | 277 auto [S0, S1] = boost::math::tools::quadratic_roots(a, bs, cs); in m2m4_snr_estimator() 294 auto [N0, N1] = boost::math::tools::quadratic_roots(a, bn, cn); in m2m4_snr_estimator()
|
/third_party/boost/boost/math/tools/ |
D | signal_statistics.hpp | 279 auto [S0, S1] = boost::math::tools::quadratic_roots(a, bs, cs); in m2m4_snr_estimator() 296 auto [N0, N1] = boost::math::tools::quadratic_roots(a, bn, cn); in m2m4_snr_estimator()
|
D | roots.hpp | 1003 …s<T1, T2, T3>::type, typename tools::promote_args<T1, T2, T3>::type> quadratic_roots(T1 const& a, … in quadratic_roots() function
|
/third_party/boost/libs/math/doc/roots/ |
D | roots.qbk | 36 auto quadratic_roots(T const & a, T const & b, T const & c); 187 auto [x0, x1] = boost::math::tools::quadratic_roots(a, b, c);
|
/third_party/boost/libs/math/doc/overview/ |
D | roadmap.qbk | 66 * Add `quadratic_roots` to `tools/roots.hpp`.
|