Home
last modified time | relevance | path

Searched refs:hermite (Results 1 – 25 of 34) sorted by relevance

12

/third_party/boost/libs/math/test/
Dtest_hermite.hpp40 pg funcp = boost::math::hermite<value_type>; in do_test_hermite()
42 pg funcp = boost::math::hermite; in do_test_hermite()
74 do_test_hermite<T>(hermite, name, "Hermite Polynomials"); in test_hermite()
87 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::hermite(0, static_cast<T>(1)), static_cast<T>(1.L), tole… in test_spots()
88 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::hermite(1, static_cast<T>(1)), static_cast<T>(2.L), tole… in test_spots()
89 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::hermite(1, static_cast<T>(2)), static_cast<T>(4.L), tole… in test_spots()
90 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::hermite(1, static_cast<T>(10)), static_cast<T>(20), tole… in test_spots()
91 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::hermite(1, static_cast<T>(100)), static_cast<T>(200), to… in test_spots()
92 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::hermite(1, static_cast<T>(1e6)), static_cast<T>(2e6), to… in test_spots()
95 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::hermite(1, static_cast<T>(1e307)), static_cast<T>(2e307)… in test_spots()
[all …]
Dtest_tr1.cpp603 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(0, static_cast<float>(1)), static_cast<float>(1.L), 100 * … in test_values()
604 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(1, static_cast<float>(1)), static_cast<float>(2.L), 100 * … in test_values()
605 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(1, static_cast<float>(2)), static_cast<float>(4.L), 100 * … in test_values()
606 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(1, static_cast<float>(10)), static_cast<float>(20), 100 * … in test_values()
607 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(1, static_cast<float>(100)), static_cast<float>(200), 100 … in test_values()
608 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(1, static_cast<float>(1e6)), static_cast<float>(2e6), 100 … in test_values()
609 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(10, static_cast<float>(30)), static_cast<float>(5.89662462… in test_values()
610 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(10, static_cast<float>(1000)), static_cast<float>(1.023976… in test_values()
611 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(10, static_cast<float>(10)), static_cast<float>(8.09327820… in test_values()
612 …BOOST_CHECK_CLOSE_FRACTION(tr1::hermite(10, static_cast<float>(-10)), static_cast<float>(8.0932782… in test_values()
[all …]
Dtest_tr1.c674 check_close_fraction(hermite(0, 1), 1.L, 100 * eps, __LINE__); in test_values()
675 check_close_fraction(hermite(1, 1), 2.L, 100 * eps, __LINE__); in test_values()
676 check_close_fraction(hermite(1, 2), 4.L, 100 * eps, __LINE__); in test_values()
677 check_close_fraction(hermite(1, 10), 20, 100 * eps, __LINE__); in test_values()
678 check_close_fraction(hermite(1, 100), 200, 100 * eps, __LINE__); in test_values()
679 check_close_fraction(hermite(1, 1e6), 2e6, 100 * eps, __LINE__); in test_values()
680 check_close_fraction(hermite(10, 30), 5.896624628001300E+17, 100 * eps, __LINE__); in test_values()
681 check_close_fraction(hermite(10, 1000), 1.023976960161280E+33, 100 * eps, __LINE__); in test_values()
682 check_close_fraction(hermite(10, 10), 8.093278209760000E+12, 100 * eps, __LINE__); in test_values()
683 check_close_fraction(hermite(10, -10), 8.093278209760000E+12, 100 * eps, __LINE__); in test_values()
[all …]
Dtest_hermite.cpp84 boost::math::hermite(51, 915.0); in BOOST_AUTO_TEST_CASE()
Dtest_policy_sf.cpp100 TEST_POLICY_SF(hermite(1, 2.0)); in BOOST_AUTO_TEST_CASE()
Dtest_autodiff_8.cpp17 auto autodiff_v = boost::math::hermite(i, make_fvar<T, m>(x)); in BOOST_AUTO_TEST_CASE_TEMPLATE()
18 auto anchor_v = boost::math::hermite(i, x); in BOOST_AUTO_TEST_CASE_TEMPLATE()
/third_party/boost/libs/math/doc/sf/
Dhermite.qbk1 [section:hermite Hermite Polynomials]
6 #include <boost/math/special_functions/hermite.hpp>
12 ``__sf_result`` hermite(unsigned n, T x);
15 ``__sf_result`` hermite(unsigned n, T x, const ``__Policy``&);
29 ``__sf_result`` hermite(unsigned n, T x);
32 ``__sf_result`` hermite(unsigned n, T x, const ``__Policy``&);
43 [graph hermite]
59 v.push_back(hermite(0, x)).push_back(hermite(1, x));
/third_party/boost/libs/math/test/compile_test/
Dsf_hermite_incl_test.cpp18 check_result<float>(boost::math::hermite<float>(u, f)); in compile_and_link_test()
19 check_result<double>(boost::math::hermite<double>(u, d)); in compile_and_link_test()
21 check_result<long double>(boost::math::hermite<long double>(u, l)); in compile_and_link_test()
Dtr1_incl_test.cpp150 check_result<float>(boost::math::tr1::hermite(ui, f)); in compile_and_link_test()
152 check_result<double>(boost::math::tr1::hermite(ui, d)); in compile_and_link_test()
153 check_result<long double>(boost::math::tr1::hermite(ui, l)); in compile_and_link_test()
155 check_result<double>(boost::math::tr1::hermite(ui, i)); in compile_and_link_test()
156 check_result<double>(boost::math::tr1::hermite(ui, ui)); in compile_and_link_test()
Dinstantiate.hpp235 boost::math::hermite(1, v1); in instantiate()
449 boost::math::hermite(1, v1 * 1); in instantiate()
633 boost::math::hermite(1, v1, pol); in instantiate()
850 test::hermite(1, v1); in instantiate()
1080 boost::math::hermite(1, s); in instantiate_mixed()
1231 boost::math::hermite(1, s, pol); in instantiate_mixed()
1388 test::hermite(1, s); in instantiate_mixed()
/third_party/boost/boost/math/special_functions/
Dhermite.hpp56 hermite(unsigned n, T x, const Policy&) in hermite() function
65 hermite(unsigned n, T x) in hermite() function
67 return boost::math::hermite(n, x, policies::policy<>()); in hermite()
Dhypergeometric_2F0.hpp97 return pow(2 / smz, -n) * boost::math::hermite(n, 1 / smz); in hypergeometric_2F0_imp()
/third_party/boost/libs/math/tools/
Dhermite_data.cpp20 T r1 = hermite(boost::math::tools::real_cast<unsigned>(n), x); in hermite_data()
31 std::cout << boost::math::hermite(10, static_cast<mp_t>(1e300)) << std::endl; in main()
/third_party/boost/libs/math/src/tr1/
Dhermitef.cpp16 return c_policies::hermite BOOST_PREVENT_MACRO_SUBSTITUTION(n, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
Dhermite.cpp16 return c_policies::hermite BOOST_PREVENT_MACRO_SUBSTITUTION(n, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
Dhermitel.cpp16 return c_policies::hermite BOOST_PREVENT_MACRO_SUBSTITUTION(n, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dspline.hpp41 GLM_FUNC_DECL genType hermite(
Dspline.inl30 GLM_FUNC_QUALIFIER genType hermite function
/third_party/boost/libs/math/doc/equations/
Dhermite_0.mml3 <mtext>hermite</mtext>
/third_party/boost/libs/multiprecision/test/concepts/
Dsf_concept_check_poly.cpp80 boost::math::hermite(1, v1); in test_extra()
/third_party/boost/libs/math/build/
DJamfile.v262 hermite
/third_party/boost/boost/math/
Dtr1_c_macros.ipp696 #ifdef hermite
697 #undef hermite
699 #define hermite boost_hermite
Dtr1.hpp998 inline double hermite BOOST_PREVENT_MACRO_SUBSTITUTION(unsigned n, double x) in BOOST_PREVENT_MACRO_SUBSTITUTION()
1002 inline float hermite BOOST_PREVENT_MACRO_SUBSTITUTION(unsigned n, float x) in BOOST_PREVENT_MACRO_SUBSTITUTION()
1004 inline long double hermite BOOST_PREVENT_MACRO_SUBSTITUTION(unsigned n, long double x) in BOOST_PREVENT_MACRO_SUBSTITUTION()
1007 inline typename tools::promote_args<T>::type hermite BOOST_PREVENT_MACRO_SUBSTITUTION(unsigned n, T… in BOOST_PREVENT_MACRO_SUBSTITUTION()
1008 { return boost::math::tr1::hermite BOOST_PREVENT_MACRO_SUBSTITUTION(n, static_cast<typename tools::… in BOOST_PREVENT_MACRO_SUBSTITUTION()
/third_party/boost/libs/math/doc/tr1/
Dtr1_ref.qbk80 double hermite(unsigned n, double x);
289 double hermite(unsigned n, double x);
/third_party/boost/libs/math/test/test_instances/
Dtest_instances.hpp157 hermite(unsigned n, BOOST_MATH_TEST_TYPE x);
160 hermite(unsigned n, BOOST_MATH_TEST_TYPE x, const policies::policy<>& pol);

12