Home
last modified time | relevance | path

Searched refs:airy_bi_zero (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/libs/math/test/
Dtest_bessel_airy_zeros.cpp889 using boost::math::airy_bi_zero; in test_bessel_zeros()
891 BOOST_MATH_CHECK_THROW(airy_bi_zero<RealType>(0), std::domain_error); in test_bessel_zeros()
895 BOOST_CHECK((boost::math::isnan)(airy_bi_zero<RealType>(0, ignore_all_policy()))); in test_bessel_zeros()
896 …BOOST_CHECK((boost::math::isnan)(airy_bi_zero<RealType>((std::numeric_limits<unsigned>::min)() , i… in test_bessel_zeros()
903 BOOST_CHECK_EQUAL(airy_bi_zero<RealType>(0, ignore_all_policy()), 0); in test_bessel_zeros()
910 BOOST_MATH_CHECK_THROW(airy_bi_zero<RealType>(-1), std::domain_error); in test_bessel_zeros()
911 …BOOST_CHECK_CLOSE_FRACTION(airy_bi_zero<RealType>((std::numeric_limits<boost::int32_t>::max)()), -… in test_bessel_zeros()
920 …BOOST_CHECK_CLOSE_FRACTION(airy_bi_zero<RealType>(1), static_cast<RealType>(-1.1737132227091279249… in test_bessel_zeros()
921 …BOOST_CHECK_CLOSE_FRACTION(airy_bi_zero<RealType>(2), static_cast<RealType>(-3.2710933028363527156… in test_bessel_zeros()
922 …BOOST_CHECK_CLOSE_FRACTION(airy_bi_zero<RealType>(3), static_cast<RealType>(-4.8307378416620159326… in test_bessel_zeros()
[all …]
/third_party/boost/libs/math/doc/sf/
Dairy.qbk249 T airy_bi_zero(
261 OutputIterator airy_bi_zero(
274 T airy_bi_zero(
287 OutputIterator airy_bi_zero(
310 `airy_ai_zero` and `airy_bi_zero`.
346 boost::math::airy_bi_zero<double>(3) = -4.83074
354 boost::math::airy_bi_zero<float_type>(1) = -2.3381074104597670384891972524467354406385401456711
355 boost::math::airy_bi_zero<float_type>(2) = -4.0879494441309706166369887014573910602247646991085
356 boost::math::airy_bi_zero<float_type>(7) = -9.5381943793462388866329885451560196208390720763825
/third_party/boost/boost/math/special_functions/
Dairy.hpp411 inline T airy_bi_zero(int m, const Policy& /*pol*/) in airy_bi_zero() function
431 inline T airy_bi_zero(int m) in airy_bi_zero() function
433 return airy_bi_zero<T>(m, policies::policy<>()); in airy_bi_zero()
437 inline OutputIterator airy_bi_zero( in airy_bi_zero() function
452 *out_it = boost::math::airy_bi_zero<result_type>(start_index + i, pol); in airy_bi_zero()
459 inline OutputIterator airy_bi_zero( in airy_bi_zero() function
464 return airy_bi_zero<T>(start_index, number_of_zeros, out_it, policies::policy<>()); in airy_bi_zero()
Dmath_fwd.hpp847 T airy_bi_zero(int m);
849 T airy_bi_zero(int m, const Policy&);
852 OutputIterator airy_bi_zero(
857 OutputIterator airy_bi_zero(
1669 inline T airy_bi_zero(int m)\
1670 { return boost::math::airy_bi_zero<T>(m, Policy()); }\
1672 OutputIterator airy_bi_zero(int start_index, unsigned number_of_zeros, OutputIterator out_it)\
1673 { return boost::math::airy_bi_zero<T>(start_index, number_of_zeros, out_it, Policy()); }\
/third_party/boost/libs/math/example/
Dairy_zeros_example.cpp90 double biz3 = boost::math::airy_bi_zero<double>(3); in main()
123 r = boost::math::airy_bi_zero<float_type>(7U); // 7th root. in main()
/third_party/boost/libs/math/test/compile_test/
Dinstantiate.hpp327 boost::math::airy_bi_zero<RealType>(i); in instantiate()
329 boost::math::airy_bi_zero<RealType>(i, i, oi); in instantiate()
723 boost::math::airy_bi_zero<RealType>(i, pol); in instantiate()
725 boost::math::airy_bi_zero<RealType>(i, i, oi, pol); in instantiate()
942 test::airy_bi_zero<RealType>(i); in instantiate()
944 test::airy_bi_zero<RealType>(i, i, oi); in instantiate()
/third_party/boost/libs/math/doc/overview/
Droadmap.qbk275 …unctions `cyl_bessel_j_zero`, `cyl_neumann_zero`, `airy_ai_zero` and `airy_bi_zero`(by Christopher…