Home
last modified time | relevance | path

Searched refs:ichsq (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/libs/math/test/
Dtest_inverse_chi_squared_distribution.cpp156 inverse_chi_squared_distribution<RealType> ichsq; in test_spots() local
160 …BOOST_MATH_CHECK_THROW(pdf(ichsq, +std::numeric_limits<RealType>::infinity()), std::domain_error);… in test_spots()
161 …BOOST_MATH_CHECK_THROW(pdf(ichsq, -std::numeric_limits<RealType>::infinity()), std::domain_error)… in test_spots()
162 …BOOST_MATH_CHECK_THROW(cdf(ichsq, +std::numeric_limits<RealType>::infinity()),std::domain_error );… in test_spots()
163 …BOOST_MATH_CHECK_THROW(cdf(ichsq, -std::numeric_limits<RealType>::infinity()), std::domain_error);… in test_spots()
164 …BOOST_MATH_CHECK_THROW(cdf(complement(ichsq, +std::numeric_limits<RealType>::infinity())), std::do… in test_spots()
165 …BOOST_MATH_CHECK_THROW(cdf(complement(ichsq, -std::numeric_limits<RealType>::infinity())), std::do… in test_spots()
179 …BOOST_MATH_CHECK_THROW(pdf(ichsq, +std::numeric_limits<RealType>::quiet_NaN()), std::domain_error)… in test_spots()
180 …BOOST_MATH_CHECK_THROW(cdf(ichsq, +std::numeric_limits<RealType>::quiet_NaN()), std::domain_error)… in test_spots()
181 …BOOST_MATH_CHECK_THROW(cdf(complement(ichsq, +std::numeric_limits<RealType>::quiet_NaN())), std::d… in test_spots()
[all …]
/third_party/boost/libs/math/example/
Dinverse_chi_squared_example.cpp112 inverse_chi_squared ichsq(nu, 1/nu); // Not scaled in main() local
115 cout << "nu = " << ichsq.degrees_of_freedom() << ", scale = " << ichsq.scale() << endl; in main()
124 << ' ' << setw(width) << pdf(ichsq, x) // unscaled in main()
131 << ' ' << setw(width) << cdf(ichsq, x) // unscaled in main()
Dinverse_chi_squared_find_df_example.cpp40 inverse_chi_squared ichsq(nu); // Implicitly scaled to default scale = 1/df. in main() local
45 cout << "ichsq.degrees_of_freedom() = " << ichsq.degrees_of_freedom() << endl; in main()