Lines Matching refs:quantile
53 ::boost::math::quantile( in check_uniform()
59 ::boost::math::quantile( in check_uniform()
178 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.9)), in test_spots()
182 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.1)), in test_spots()
186 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.5)), in test_spots()
190 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0)), in test_spots()
194 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(1)), in test_spots()
201 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.1))), in test_spots()
205 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.9))), in test_spots()
209 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.5))), in test_spots()
213 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0))), in test_spots()
217 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(1))), in test_spots()
252 …quantile(uniform_distribution<RealType>(-1, 2), static_cast<RealType>(0.66666666666666666666666666… in test_spots()
362 BOOST_CHECK(quantile(distu01, 0) == 0); in test_spots()
363 BOOST_CHECK(quantile(complement(distu01, 0)) == 1); in test_spots()
364 BOOST_CHECK(quantile(distu01, 1) == 1); in test_spots()
365 BOOST_CHECK(quantile(complement(distu01, 1)) == 0); in test_spots()