Home
last modified time | relevance | path

Searched refs:legendre_p (Results 1 – 25 of 30) sorted by relevance

12

/third_party/boost/libs/math/test/
Dtest_legendre.hpp41 funcp = boost::math::legendre_p<value_type>; in do_test_legendre_p()
43 funcp = boost::math::legendre_p; in do_test_legendre_p()
94 pg funcp = boost::math::legendre_p<value_type>; in do_test_assoc_legendre_p()
96 pg funcp = boost::math::legendre_p; in do_test_assoc_legendre_p()
127 do_test_legendre_p<T>(legendre_p, name, "Legendre Polynomials: Small Values"); in test_legendre_p()
147 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(1, static_cast<T>(0.5L)), static_cast<T>(0.5L… in test_spots()
148 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(-1, static_cast<T>(0.5L)), static_cast<T>(1L)… in test_spots()
149 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(4, static_cast<T>(0.5L)), static_cast<T>(-0.2… in test_spots()
150 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(-4, static_cast<T>(0.5L)), static_cast<T>(-0.… in test_spots()
151 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(7, static_cast<T>(0.5L)), static_cast<T>(0.22… in test_spots()
[all …]
Dtest_legendre_hooks.hpp13 inline float legendre_p(int l, float a) in legendre_p() function
15 inline double legendre_p(int l, double a) in legendre_p() function
17 inline long double legendre_p(int l, long double a) in legendre_p() function
33 …boost::math::concepts::real_concept legendre_p(int, boost::math::concepts::real_concept){ return 0… in legendre_p() function
Dlegendre_stieltjes_test.cpp17 using boost::math::legendre_p;
43 Real p2 = legendre_p(2, x); in test_legendre_stieltjes()
47 Real p3 = legendre_p(3, x); in test_legendre_stieltjes()
51 Real p4 = legendre_p(4, x); in test_legendre_stieltjes()
57 Real p5 = legendre_p(5, x); in test_legendre_stieltjes()
Dtest_policy_sf.cpp91 TEST_POLICY_SF(legendre_p(5, 0.75)); in BOOST_AUTO_TEST_CASE()
92 TEST_POLICY_SF(legendre_p(7, 3, 0.75)); in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/math/test/compile_test/
Dsf_legendre_incl_test.cpp18 check_result<float>(boost::math::legendre_p<float>(i, f)); in compile_and_link_test()
19 check_result<double>(boost::math::legendre_p<double>(i, d)); in compile_and_link_test()
21 check_result<long double>(boost::math::legendre_p<long double>(i, l)); in compile_and_link_test()
29 check_result<float>(boost::math::legendre_p<float>(i, i, f)); in compile_and_link_test()
30 check_result<double>(boost::math::legendre_p<double>(i, i, d)); in compile_and_link_test()
32 check_result<long double>(boost::math::legendre_p<long double>(i, i, l)); in compile_and_link_test()
Dinstantiate.hpp224 boost::math::legendre_p(1, v1); in instantiate()
225 boost::math::legendre_p(1, 0, v1); in instantiate()
438 boost::math::legendre_p(1, v1 * 1); in instantiate()
439 boost::math::legendre_p(1, 0, v1 * 1); in instantiate()
623 boost::math::legendre_p(1, v1, pol); in instantiate()
624 boost::math::legendre_p(1, 0, v1, pol); in instantiate()
840 test::legendre_p(1, v1); in instantiate()
841 test::legendre_p(1, 0, v1); in instantiate()
1075 boost::math::legendre_p(1, 0, s); in instantiate_mixed()
1226 boost::math::legendre_p(1, 0, s, pol); in instantiate_mixed()
[all …]
/third_party/boost/libs/math/doc/sf/
Dlegendre.qbk12 ``__sf_result`` legendre_p(int n, T x);
15 ``__sf_result`` legendre_p(int n, T x, const ``__Policy``&);
30 ``__sf_result`` legendre_p(int n, int m, T x);
33 ``__sf_result`` legendre_p(int n, int m, T x, const ``__Policy``&);
59 ``__sf_result`` legendre_p(int l, T x);
62 ``__sf_result`` legendre_p(int l, T x, const ``__Policy``&);
77 [graph legendre_p]
106 ``__sf_result`` legendre_p(int l, int m, T x);
109 ``__sf_result`` legendre_p(int l, int m, T x, const ``__Policy``&);
177 v.push_back(legendre_p(0, x));
[all …]
/third_party/boost/libs/math/reporting/performance/
Dtest_legendre.cpp26 add_data(legendre_p); in main()
31 …screen_data([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1]); }, [](… in main()
47 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1… in main()
59 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1… in main()
Dtest_assoc_legendre.cpp29 …screen_data([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1], v[2]); … in main()
45 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1… in main()
57 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1… in main()
Dtest_legendre_q.cpp26 add_data(legendre_p); in main()
/third_party/boost/boost/math/special_functions/
Dlegendre.hpp222 legendre_p(int l, T x, const Policy& pol) in legendre_p() function
247 legendre_p(int l, T x) in legendre_p() function
249 return boost::math::legendre_p(l, x, policies::policy<>()); in legendre_p()
323 return boost::math::legendre_p(l, x, pol); in legendre_p_imp()
357 legendre_p(int l, int m, T x, const Policy& pol) in legendre_p() function
366 legendre_p(int l, int m, T x) in legendre_p() function
368 return boost::math::legendre_p(l, m, x, policies::policy<>()); in legendre_p()
Dmath_fwd.hpp184 legendre_p(int l, T x);
199 legendre_p(int l, T x, const Policy& pol);
218 legendre_p(int l, int m, T x);
222 legendre_p(int l, int m, T x, const Policy& pol);
1228 legendre_p(int l, T x){ return ::boost::math::legendre_p(l, x, Policy()); }\
1232 legendre_p_prime(int l, T x){ return ::boost::math::legendre_p(l, x, Policy()); }\
1242 legendre_p(int l, int m, T x){ return ::boost::math::legendre_p(l, m, x, Policy()); }\
/third_party/boost/libs/math/example/
Dlegendre_stieltjes_example.cpp14 using boost::math::legendre_p;
66 …kronrod_weights[i] = static_cast<Real>(2)/(static_cast<Real>(order+1)*legendre_p(order, node)*E.pr… in gauss_kronrod_rule()
/third_party/boost/libs/multiprecision/test/concepts/
Dsf_concept_check_poly.cpp70 boost::math::legendre_p(1, v1); in test_extra()
71 boost::math::legendre_p(1, 0, v1); in test_extra()
/third_party/boost/libs/math/tools/
Dlegendre_data.cpp22 T r1 = legendre_p(boost::math::tools::real_cast<int>(n), x); in legendre_p_data()
34 T r1 = legendre_p(l, m, x); in assoc_legendre_p_data()
/third_party/boost/libs/math/src/tr1/
Dlegendrel.cpp16 return c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(n, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
Dlegendre.cpp16 return c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(n, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
Dlegendref.cpp16 return c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(n, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
Dassoc_legendref.cpp16 return (m&1 ? -1 : 1) * c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(l, m, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
Dassoc_legendrel.cpp16 return (m&1 ? -1 : 1) * c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(l, m, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
Dassoc_legendre.cpp16 return (m&1 ? -1 : 1) * c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(l, m, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
/third_party/boost/libs/math/doc/equations/
Dlegendre_0.mml3 <mtext>legendre_p</mtext>
Dlegendre_1.mml3 <mtext>legendre_p</mtext>
/third_party/boost/libs/math/test/test_instances/
Dtest_instances.hpp118 legendre_p(int l, BOOST_MATH_TEST_TYPE x);
121 legendre_p(int l, BOOST_MATH_TEST_TYPE x, const policies::policy<>& pol);
133 legendre_p(int l, int m, BOOST_MATH_TEST_TYPE x);
136 legendre_p(int l, int m, BOOST_MATH_TEST_TYPE x, const policies::policy<>& pol);
/third_party/boost/libs/math/reporting/accuracy/
Dbindings.hpp719 #define LEGENDRE_P_FUNCTION_TO_TEST boost::math::legendre_p
721 #define LEGENDRE_PA_FUNCTION_TO_TEST boost::math::legendre_p

12