Lines Matching refs:cdf
105 using ::boost::math::cdf; in test_spots()
110 cdf(poisson_distribution<RealType>(static_cast<RealType>(0)), // mean zero is bad. in test_spots()
115 cdf(poisson_distribution<RealType>(static_cast<RealType>(-1)), // mean negative is bad. in test_spots()
120 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unit OK, in test_spots()
125 cdf(poisson_distribution<RealType>(static_cast<RealType>(0)), // mean zero is bad. in test_spots()
130 cdf(poisson_distribution<RealType>(static_cast<RealType>(0)), // mean zero is bad. in test_spots()
214 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unity. in test_spots()
220 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unity. in test_spots()
226 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unity. in test_spots()
232 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unity. in test_spots()
238 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unity. in test_spots()
244 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unity. in test_spots()
250 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unity. in test_spots()
256 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unity. in test_spots()
262 cdf(poisson_distribution<RealType>(static_cast<RealType>(100)), // mean 100. in test_spots()
269 cdf(poisson_distribution<RealType>(static_cast<RealType>(100)), // mean 100. in test_spots()
276 cdf(poisson_distribution<RealType>(static_cast<RealType>(33)), // mean = k in test_spots()
282 cdf(poisson_distribution<RealType>(static_cast<RealType>(33)), // mean = k-1 in test_spots()
288 cdf(poisson_distribution<RealType>(static_cast<RealType>(1)), // mean unity. in test_spots()
294 cdf(poisson_distribution<RealType>(static_cast<RealType>(5.)), // mean in test_spots()
299 cdf(poisson_distribution<RealType>(static_cast<RealType>(5.)), // mean in test_spots()
305 cdf(poisson_distribution<RealType>(static_cast<RealType>(5.)), // mean in test_spots()
311 cdf(poisson_distribution<RealType>(static_cast<RealType>(1.)), // mean in test_spots()
317 cdf(poisson_distribution<RealType>(static_cast<RealType>(10.)), // mean in test_spots()
323 cdf(poisson_distribution<RealType>(static_cast<RealType>(4.)), // mean in test_spots()
330 cdf(complement(poisson_distribution<RealType>(static_cast<RealType>(4.)), // mean in test_spots()
336 cdf(complement(poisson_distribution<RealType>(static_cast<RealType>(4.)), // mean in test_spots()
341 cdf(complement(poisson_distribution<RealType>(static_cast<RealType>(1.)), // mean in test_spots()
349 cdf(poisson_distribution<RealType>(static_cast<RealType>(40.)), // mean in test_spots()
376 cdf(poisson_distribution<RealType>(static_cast<RealType>(10.)), // mean in test_spots()
389 cdf(poisson_distribution<RealType>(static_cast<RealType>(4.)), // mean in test_spots()
531 cout << "cdf(mypoisson, 2.) == " << cdf(mypoisson, 2.) << endl; in BOOST_AUTO_TEST_CASE()
547 BOOST_MATH_CHECK_THROW(cdf(mypoisson, -1), std::domain_error); // k must be >= 0 in BOOST_AUTO_TEST_CASE()
556 cdf(mypoisson, 2.), // k events = 2. in BOOST_AUTO_TEST_CASE()
563 using boost::math::cdf; in BOOST_AUTO_TEST_CASE()
582 << cdf(poisson_distribution<double>(mean), static_cast<double>(i)) << ' '; in BOOST_AUTO_TEST_CASE()
590 cdf(mypoisson, static_cast<double>(i)), in BOOST_AUTO_TEST_CASE()
600 …cout << cdf(poisson_distribution<double>(5), static_cast<double>(0)) << ' ' << endl; // 0.00673794… in BOOST_AUTO_TEST_CASE()
601 …cout << cdf(poisson_distribution<double>(5), static_cast<double>(1)) << ' ' << endl; // 0.04042768… in BOOST_AUTO_TEST_CASE()
602 …cout << cdf(poisson_distribution<double>(2), static_cast<double>(3)) << ' ' << endl; // 0.85712346… in BOOST_AUTO_TEST_CASE()