/third_party/boost/libs/math/test/ |
D | test_ibeta.hpp | 87 funcp = boost::math::ibetac<value_type, value_type, value_type>; in do_test_beta() 89 funcp = boost::math::ibetac; in do_test_beta() 217 ::boost::math::ibetac( in test_spots() 229 ::boost::math::ibetac( in test_spots() 288 …BOOST_CHECK_EQUAL(::boost::math::ibetac(static_cast<T>(0), static_cast<T>(2), static_cast<T>(0.5))… in test_spots() 289 …BOOST_CHECK_EQUAL(::boost::math::ibetac(static_cast<T>(4), static_cast<T>(0), static_cast<T>(0.5))… in test_spots() 296 …BOOST_MATH_CHECK_THROW(::boost::math::ibetac(static_cast<T>(0), static_cast<T>(0), static_cast<T>(… in test_spots() 297 …BOOST_MATH_CHECK_THROW(::boost::math::ibetac(static_cast<T>(-1), static_cast<T>(2), static_cast<T>… in test_spots() 298 …BOOST_MATH_CHECK_THROW(::boost::math::ibetac(static_cast<T>(2), static_cast<T>(-2), static_cast<T>… in test_spots() 299 …BOOST_MATH_CHECK_THROW(::boost::math::ibetac(static_cast<T>(2), static_cast<T>(2), static_cast<T>(… in test_spots() [all …]
|
D | test_policy_sf.cpp | 72 TEST_POLICY_SF(ibetac(12.0, 15.0, 0.25)); in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/math/reporting/performance/ |
D | test_ibetac.cpp | 37 …screen_data([](const std::vector<double>& v){ return boost::math::ibetac(v[0], v[1], v[2]); }, [… in main() 51 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::ibetac(v[0], v[1], v… in main() 63 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::ibetac(v[0], v[1], v… in main()
|
/third_party/boost/libs/math/doc/sf/ |
D | ibeta.qbk | 18 ``__sf_result`` ibetac(T1 a, T2 b, T3 x); 21 ``__sf_result`` ibetac(T1 a, T2 b, T3 x, const ``__Policy``&); 45 ) versions (ibeta and ibetac). 72 ``__sf_result`` ibetac(T1 a, T2 b, T3 x); 75 ``__sf_result`` ibetac(T1 a, T2 b, T3 x, const ``__Policy``&);
|
D | ibeta_inv.qbk | 118 Returns a value /x/ such that: `q = ibetac(a, b, x);` 147 Returns a value /a/ such that: `q = ibetac(a, b, x);` 171 Returns a value /b/ such that: `q = ibetac(a, b, x);`
|
/third_party/boost/libs/math/doc/equations/ |
D | ibeta4.mml | 3 <mtext>ibetac</mtext>
|
/third_party/boost/libs/multiprecision/test/concepts/ |
D | sf_concept_check_beta.cpp | 74 boost::math::ibetac(v1, v2, v3); in test_extra()
|
/third_party/boost/boost/math/distributions/ |
D | fisher_f.hpp | 160 ? boost::math::ibetac(df2 / 2, df1 / 2, df2 / (df2 + v1x), Policy()) in cdf() 222 : boost::math::ibetac(df1 / 2, df2 / 2, v1x / (df2 + v1x), Policy()); in cdf()
|
D | negative_binomial.hpp | 394 using boost::math::ibetac; // Regularized incomplete beta function complement. in cdf() 417 RealType probability = ibetac(r, static_cast<RealType>(k+1), p, Policy()); in cdf()
|
D | beta.hpp | 452 return ibetac(a, b, x, Policy()); in cdf()
|
D | students_t.hpp | 195 probability = ibetac(static_cast<RealType>(0.5), df / 2, z, Policy()) / 2; in cdf()
|
D | binomial.hpp | 573 return ibetac(k + 1, n - k, p, Policy()); in cdf()
|
/third_party/boost/libs/math/reporting/accuracy/ |
D | bindings.hpp | 387 inline double ibetac(double a, double b, double x) { return pbeta(x, a, b, 0, 0); } in ibetac() function 394 #define IBETAC_FUNCTION_TO_TEST ibetac 694 #define IBETAC_FUNCTION_TO_TEST boost::math::ibetac
|
/third_party/boost/libs/math/test/compile_test/ |
D | instantiate.hpp | 200 boost::math::ibetac(v1, v2, v3); in instantiate() 415 boost::math::ibetac(v1 * 1, v2 + 0, v3 / 1); in instantiate() 608 boost::math::ibetac(v1, v2, v3, pol); in instantiate() 816 test::ibetac(v1, v2, v3); in instantiate() 1045 boost::math::ibetac(l, i, s); in instantiate_mixed() 1046 boost::math::ibetac(fr, dr, lr); in instantiate_mixed() 1201 boost::math::ibetac(l, i, s, pol); in instantiate_mixed() 1202 boost::math::ibetac(fr, dr, lr, pol); in instantiate_mixed() 1353 test::ibetac(l, i, s); in instantiate_mixed() 1354 test::ibetac(fr, dr, lr); in instantiate_mixed()
|
/third_party/boost/boost/math/special_functions/detail/ |
D | ibeta_inv_ab.hpp | 32 p - boost::math::ibetac(swap_ab ? b : a, swap_ab ? a : b, z, Policy()) in operator ()()
|
/third_party/boost/boost/math/special_functions/ |
D | beta.hpp | 1545 ibetac(RT1 a, RT2 b, RT3 x, const Policy&) in ibetac() function 1561 ibetac(RT1 a, RT2 b, RT3 x) in ibetac() function 1563 return boost::math::ibetac(a, b, x, policies::policy<>()); in ibetac()
|
D | math_fwd.hpp | 72 ibetac(RT1 a, RT2 b, RT3 x); // Incomplete beta complement function. 76 ibetac(RT1 a, RT2 b, RT3 x, const Policy& pol); // Incomplete beta complement function. 1172 ibetac(RT1 a, RT2 b, RT3 x){ return ::boost::math::ibetac(a, b, x, Policy()); }\
|
/third_party/boost/libs/math/test/test_instances/ |
D | test_instances.hpp | 38 …ibetac(BOOST_MATH_TEST_TYPE a, BOOST_MATH_TEST_TYPE b, BOOST_MATH_TEST_TYPE x); // Incomplete beta… 41 …ibetac(BOOST_MATH_TEST_TYPE a, BOOST_MATH_TEST_TYPE b, BOOST_MATH_TEST_TYPE x, const policies::pol…
|
/third_party/boost/libs/math/doc/distributions/ |
D | negative_binomial.qbk | 338 = ibetac(r, static_cast<RealType>(k+1), p)
|
/third_party/boost/doc/test/ |
D | test.qbk | 561 [[cdf complement][ibetac(a, b, x)]]
|
/third_party/boost/libs/math/doc/ |
D | math.qbk | 196 [def __ibetac [link math_toolkit.sf_beta.ibeta_function ibetac]]
|
/third_party/boost/libs/math/reporting/performance/doc/ |
D | performance_tables.qbk | 347 [[ibetac[br](3210/3210 tests selected)][[role red 3.63[br](1438ns)]][[role blue 1.37[br](543ns)]][[… 710 [[ibetac[br](3210/3210 tests selected)][[role red 5.19[br](2008ns)]][[role green 1.20[br](463ns)]][… 1073 [[ibetac][[role red 4.34[br](2008ns)]][[role blue 1.27[br](590ns)]][[role red 4.34[br](2008ns)]][[r… 1131 [[ibetac[br](3210/3210 tests selected)][[role red 4.44[br](2008ns)]][[role blue 1.31[br](590ns)]][[… 1850 [[ibetac][[role green 1.00[br](525ns)]][[role red 2.60[br](1365ns)]][[role blue 1.27[br](668ns)]]]
|
/third_party/boost/libs/math/reporting/accuracy/doc/ |
D | accuracy_tables.qbk | 2130 [table:table_ibetac Error rates for ibetac 2813 [section:section_ibetac ibetac]
|