Lines Matching refs:quantile
75 quantile(abeta, P), x, tol); in test_spot()
85 BOOST_CHECK(quantile(abeta, P) < boost::math::tools::epsilon<RealType>() * 10); in test_spot()
90 BOOST_CHECK_CLOSE_FRACTION(quantile(complement(abeta, Q)), x, tol); in test_spot()
97 … BOOST_CHECK(quantile(complement(abeta, Q)) < boost::math::tools::epsilon<RealType>() * 10); in test_spot()
285 quantile(beta_distribution<RealType>(static_cast<RealType>(0.5), static_cast<RealType>(0.5)), in test_spots()
299 quantile(beta_distribution<RealType>(static_cast<RealType>(0.5), static_cast<RealType>(0.5)), in test_spots()
314 quantile(beta_distribution<RealType>(static_cast<RealType>(2), static_cast<RealType>(0.5)), in test_spots()
328 quantile(beta_distribution<RealType>(static_cast<RealType>(1), static_cast<RealType>(1)), in test_spots()
342 quantile(beta_distribution<RealType>(static_cast<RealType>(2), static_cast<RealType>(2)), in test_spots()
474 BOOST_MATH_CHECK_THROW(quantile(dist, -1), std::domain_error); in test_spots()
475 BOOST_MATH_CHECK_THROW(quantile(complement(dist, -1)), std::domain_error); in test_spots()
476 BOOST_MATH_CHECK_THROW(quantile(dist, -1), std::domain_error); in test_spots()
477 BOOST_MATH_CHECK_THROW(quantile(complement(dist, -1)), std::domain_error); in test_spots()
497 BOOST_MATH_CHECK_THROW(quantile(w, +nan), std::domain_error); // p = + nan in test_spots()
498 BOOST_MATH_CHECK_THROW(quantile(complement(w, +nan)), std::domain_error); // p = + nan in test_spots()
525 BOOST_MATH_CHECK_THROW(quantile(w, +inf), std::domain_error); // p = + inf in test_spots()
526 BOOST_MATH_CHECK_THROW(quantile(complement(w, +inf)), std::domain_error); // p = + inf in test_spots()
536 …BOOST_MATH_CHECK_THROW(quantile(boost::math::beta_distribution<RealType>(1, 1), -1), std::domain_e… in test_spots()
537 …BOOST_MATH_CHECK_THROW(quantile(boost::math::beta_distribution<RealType>(1, 1), 2), std::domain_er… in test_spots()
600 BOOST_CHECK_CLOSE_FRACTION(quantile(mybeta22, 0.028), 0.1, tol); in BOOST_AUTO_TEST_CASE()
601 BOOST_CHECK_CLOSE_FRACTION(quantile(complement(mybeta22, 1 - 0.028)), 0.1, tol); in BOOST_AUTO_TEST_CASE()