Home
last modified time | relevance | path

Searched refs:airy_ai_zero (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/libs/math/test/
Dtest_bessel_airy_zeros.cpp823 using boost::math::airy_ai_zero; // in test_bessel_zeros()
827 BOOST_MATH_CHECK_THROW(airy_ai_zero<RealType>(0), std::domain_error); in test_bessel_zeros()
831 BOOST_CHECK((boost::math::isnan)(airy_ai_zero<RealType>(0, ignore_all_policy()))); in test_bessel_zeros()
832 …BOOST_CHECK((boost::math::isnan)(airy_ai_zero<RealType>((std::numeric_limits<unsigned>::min)() , i… in test_bessel_zeros()
838 BOOST_CHECK_EQUAL(airy_ai_zero<RealType>(0, ignore_all_policy()), 0); in test_bessel_zeros()
842 BOOST_MATH_CHECK_THROW(airy_ai_zero<RealType>(-1), std::domain_error); in test_bessel_zeros()
843 …BOOST_CHECK_CLOSE_FRACTION(airy_ai_zero<RealType>((std::numeric_limits<boost::int32_t>::max)()), -… in test_bessel_zeros()
853 …BOOST_CHECK_CLOSE_FRACTION(airy_ai_zero<RealType>(1), static_cast<RealType>(-2.3381074104597670384… in test_bessel_zeros()
854 …BOOST_CHECK_CLOSE_FRACTION(airy_ai_zero<RealType>(2), static_cast<RealType>(-4.0879494441309706166… in test_bessel_zeros()
855 …BOOST_CHECK_CLOSE_FRACTION(airy_ai_zero<RealType>(3), static_cast<RealType>(-5.5205598280955510591… in test_bessel_zeros()
[all …]
/third_party/boost/libs/math/example/
Dairy_zeros_example.cpp86 double aiz1 = boost::math::airy_ai_zero<double>(1); in main()
88 double aiz2 = boost::math::airy_ai_zero<double>(2); in main()
101 boost::math::airy_ai_zero<double>(1U, n_roots, std::back_inserter(roots)); in main()
117 float_type r = boost::math::airy_ai_zero<float_type>(1U); // 1st root. in main()
120 r = boost::math::airy_ai_zero<float_type>(2U); // 2nd root. in main()
127 boost::math::airy_ai_zero<float_type>(1U, 3, std::back_inserter(zeros)); in main()
Dbessel_errors_example.cpp142 double nan_root = boost::math::airy_ai_zero<double>(nan); in main()
/third_party/boost/boost/math/special_functions/
Dairy.hpp354 inline T airy_ai_zero(int m, const Policy& /*pol*/) in airy_ai_zero() function
374 inline T airy_ai_zero(int m) in airy_ai_zero() function
376 return airy_ai_zero<T>(m, policies::policy<>()); in airy_ai_zero()
380 inline OutputIterator airy_ai_zero( in airy_ai_zero() function
395 *out_it = boost::math::airy_ai_zero<result_type>(start_index + i, pol); in airy_ai_zero()
402 inline OutputIterator airy_ai_zero( in airy_ai_zero() function
407 return airy_ai_zero<T>(start_index, number_of_zeros, out_it, policies::policy<>()); in airy_ai_zero()
Dmath_fwd.hpp830 T airy_ai_zero(int m);
832 T airy_ai_zero(int m, const Policy&);
835 OutputIterator airy_ai_zero(
840 OutputIterator airy_ai_zero(
1662 inline T airy_ai_zero(int m)\
1663 { return boost::math::airy_ai_zero<T>(m, Policy()); }\
1665 OutputIterator airy_ai_zero(int start_index, unsigned number_of_zeros, OutputIterator out_it)\
1666 { return boost::math::airy_ai_zero<T>(start_index, number_of_zeros, out_it, Policy()); }\
/third_party/boost/libs/math/doc/sf/
Dairy.qbk245 T airy_ai_zero(
255 OutputIterator airy_ai_zero(
269 T airy_ai_zero(
280 OutputIterator airy_ai_zero(
310 `airy_ai_zero` and `airy_bi_zero`.
315 airy_ai_zero(1);
344 boost::math::airy_ai_zero<double>(1) = -2.33811
345 boost::math::airy_ai_zero<double>(2) = -4.08795
/third_party/boost/libs/math/test/compile_test/
Dinstantiate.hpp326 boost::math::airy_ai_zero<RealType>(i); in instantiate()
328 boost::math::airy_ai_zero<RealType>(i, i, oi); in instantiate()
722 boost::math::airy_ai_zero<RealType>(i, pol); in instantiate()
724 boost::math::airy_ai_zero<RealType>(i, i, oi, pol); in instantiate()
941 test::airy_ai_zero<RealType>(i); in instantiate()
943 test::airy_ai_zero<RealType>(i, i, oi); in instantiate()
/third_party/boost/libs/math/doc/overview/
Droadmap.qbk275 * Added finding zeros of Bessel functions `cyl_bessel_j_zero`, `cyl_neumann_zero`, `airy_ai_zero` a…