/third_party/boost/libs/math/test/ |
D | test_igamma_inv.hpp | 95 …BOOST_CHECK_EQUAL(boost::math::gamma_q_inv(Real(data[i][0]), Real(data[i][3])), std::numeric_limit… in do_test_gamma_2() 98 value_type inv = boost::math::gamma_q_inv(Real(data[i][0]), Real(data[i][3])); in do_test_gamma_2() 102 … BOOST_CHECK_EQUAL(boost::math::gamma_q_inv(Real(data[i][0]), Real(data[i][3])), value_type(0)); in do_test_gamma_2() 107 value_type inv = boost::math::gamma_q_inv(Real(data[i][0]), Real(data[i][3])); in do_test_gamma_2() 148 funcp = boost::math::gamma_q_inv<value_type, value_type>; in do_test_gamma_inv() 150 funcp = boost::math::gamma_q_inv; in do_test_gamma_inv() 210 …BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(1)/100, static_cast<T>(1.0/128)), stat… in test_spots() 211 …BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(1)/100, static_cast<T>(0.5)), static_c… in test_spots() 223 …BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(0.5), static_cast<T>(1.0/128)), static… in test_spots() 224 …BOOST_CHECK_CLOSE(::boost::math::gamma_q_inv(static_cast<T>(0.5), static_cast<T>(1.0/2)), static_c… in test_spots() [all …]
|
D | test_gamma_hooks.hpp | 230 inline double gamma_q_inv(double x, double y) in gamma_q_inv() function 239 inline float gamma_q_inv(float x, float y) in gamma_q_inv() function 241 return (float)gamma_q_inv((double)x, (double)y); in gamma_q_inv() 243 inline long double gamma_q_inv(long double x, long double y) in gamma_q_inv() function 245 return gamma_q_inv((double)x, (double)y); in gamma_q_inv() 275 …boost::math::concepts::real_concept gamma_q_inv(boost::math::concepts::real_concept x, boost::math… in gamma_q_inv() function
|
D | test_policy_sf.cpp | 61 TEST_POLICY_SF(gamma_q_inv(15.0, 0.25)); in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/math/doc/sf/ |
D | igamma_inv.qbk | 12 ``__sf_result`` gamma_q_inv(T1 a, T2 q); 15 ``__sf_result`` gamma_q_inv(T1 a, T2 q, const ``__Policy``&); 51 These are implemented here as `gamma_p_inv` and `gamma_q_inv`, and are by 61 ``__sf_result`` gamma_q_inv(T1 a, T2 q); 64 ``__sf_result`` gamma_q_inv(T1 a, T2 q, const ``__Policy``&); 135 …amma_p_inv` and [@http://functions.wolfram.com/GammaBetaErf/InverseGammaRegularized/ `gamma_q_inv`] 153 but are handled separately from `gamma_p_inv` and `gamma_q_inv`. 159 `gamma_p_inv` or `gamma_q_inv` functions. Even so, the root is usually found
|
/third_party/boost/libs/math/reporting/performance/ |
D | test_gamma_q_inv.cpp | 34 …screen_data([](const std::vector<double>& v){ return boost::math::gamma_q_inv(v[0], v[1]); }, []… in main() 48 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::gamma_q_inv(v[0], v[… in main() 60 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::gamma_q_inv(v[0], v[… in main()
|
/third_party/boost/libs/math/test/compile_test/ |
D | sf_gamma_incl_test.cpp | 48 check_result<float>(boost::math::gamma_q_inv<float>(f, f)); in compile_and_link_test() 49 check_result<double>(boost::math::gamma_q_inv<double>(d, d)); in compile_and_link_test() 51 check_result<long double>(boost::math::gamma_q_inv<long double>(l, l)); in compile_and_link_test()
|
D | instantiate.hpp | 189 boost::math::gamma_q_inv(v1, v2); in instantiate() 404 boost::math::gamma_q_inv(v1 * 1, v2 + 0); in instantiate() 597 boost::math::gamma_q_inv(v1, v2, pol); in instantiate() 805 test::gamma_q_inv(v1, v2); in instantiate() 1030 boost::math::gamma_q_inv(s, fr); in instantiate_mixed() 1186 boost::math::gamma_q_inv(s, fr, pol); in instantiate_mixed() 1338 test::gamma_q_inv(s, fr); in instantiate_mixed()
|
/third_party/boost/boost/math/distributions/ |
D | inverse_chi_squared.hpp | 186 using boost::math::gamma_q_inv; in quantile() 208 RealType result = gamma_q_inv(df /2, p, Policy()); in quantile() 218 using boost::math::gamma_q_inv; in cdf() 249 using boost::math::gamma_q_inv; in quantile()
|
D | inverse_gamma.hpp | 223 using boost::math::gamma_q_inv; in quantile() 239 result = gamma_q_inv(shape, p, Policy()); in quantile()
|
D | chi_squared.hpp | 202 return 2 * boost::math::gamma_q_inv(degrees_of_freedom / 2, q, Policy()); in quantile()
|
D | gamma.hpp | 228 result = gamma_q_inv(shape, q, Policy()) * scale; in quantile()
|
/third_party/boost/libs/math/example/ |
D | inverse_gamma_example.cpp | 44 double r = boost::math::gamma_q_inv(a ,x); in main()
|
/third_party/boost/boost/math/special_functions/detail/ |
D | igamma_inverse.hpp | 523 gamma_q_inv(T1 a, T2 p, const Policy& pol) in gamma_q_inv() function 540 gamma_q_inv(T1 a, T2 p) in gamma_q_inv() function 542 return gamma_q_inv(a, p, policies::policy<>()); in gamma_q_inv()
|
D | ibeta_inverse.hpp | 325 eta0 = boost::math::gamma_q_inv(b, p, pol); in temme_method_3_ibeta_inverse()
|
/third_party/boost/libs/multiprecision/test/concepts/ |
D | sf_concept_check_gamma.cpp | 90 boost::math::gamma_q_inv(v1, v2); in test_extra()
|
/third_party/boost/libs/math/reporting/accuracy/ |
D | bindings.hpp | 405 inline double gamma_q_inv(double a, double x) { return qgamma(x, a, 1.0, 0, 0); } in gamma_q_inv() function 412 #define GAMMAQ_INV_FUNCTION_TO_TEST gamma_q_inv 707 #define GAMMAQ_INV_FUNCTION_TO_TEST boost::math::gamma_q_inv
|
/third_party/boost/libs/math/tools/ |
D | igamma_data.cpp | 88 mp_t x2 = boost::math::gamma_q_inv(a, p); in operator ()()
|
/third_party/boost/libs/math/test/test_instances/ |
D | test_instances.hpp | 300 …template tools::promote_args<BOOST_MATH_TEST_TYPE, BOOST_MATH_TEST_TYPE>::type gamma_q_inv(BOOST_M… 302 …template tools::promote_args<BOOST_MATH_TEST_TYPE, BOOST_MATH_TEST_TYPE>::type gamma_q_inv(BOOST_M…
|
/third_party/boost/boost/math/special_functions/ |
D | math_fwd.hpp | 523 typename tools::promote_args<T1, T2>::type gamma_q_inv(T1 a, T2 q); 526 typename tools::promote_args<T1, T2>::type gamma_q_inv(T1 a, T2 q, const Policy&); 1390 … boost::math::tools::promote_args<T1, T2>::type gamma_q_inv(T1 a, T2 q){ return boost::math::gamma…
|
/third_party/boost/libs/math/doc/ |
D | math.qbk | 171 [def __gamma_q_inv [link math_toolkit.sf_gamma.igamma_inv gamma_q_inv]]
|
/third_party/boost/libs/math/reporting/performance/doc/ |
D | performance_tables.qbk | 344 [[gamma_q_inv[br](78/559 tests selected)][[role red 2.17[br](1275ns)]][[role blue 1.26[br](739ns)]]… 707 [[gamma_q_inv[br](78/559 tests selected)][[role red 3.08[br](2381ns)]][[role blue 1.24[br](962ns)]]… 1070 [[gamma_q_inv][[role red 2.73[br](2016ns)]][[role blue 1.30[br](958ns)]][[role red 3.22[br](2381ns)… 1128 [[gamma_q_inv[br](78/559 tests selected)][[role red 2.57[br](2016ns)]][[role blue 1.22[br](958ns)]]… 1847 [[gamma_q_inv][[role green 1.00[br](1194ns)]][[role blue 1.66[br](1987ns)]][[role green 1.14[br](13…
|
/third_party/boost/libs/math/reporting/accuracy/doc/ |
D | accuracy_tables.qbk | 2250 [table:table_gamma_q_inv Error rates for gamma_q_inv 2897 [section:section_gamma_q_inv gamma_q_inv]
|