Home
last modified time | relevance | path

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

/third_party/boost/libs/math/test/
Dchebyshev_test.cpp24 using boost::math::chebyshev_u;
50 BOOST_CHECK_CLOSE_FRACTION(chebyshev_u(0, x), Real(1), tol); in test_polynomials()
51 BOOST_CHECK_CLOSE_FRACTION(chebyshev_u(1, x), 2*x, tol); in test_polynomials()
52 BOOST_CHECK_CLOSE_FRACTION(chebyshev_u(2, x), 4*x*x - 1, tol); in test_polynomials()
53 BOOST_CHECK_CLOSE_FRACTION(chebyshev_u(3, x), 4*x*(2*x*x - 1), tol); in test_polynomials()
Dtest_autodiff_5.cpp64 boost::math::chebyshev_u(n, make_fvar<T, m>(x)).derivative(0u), in BOOST_AUTO_TEST_CASE_TEMPLATE()
65 boost::math::chebyshev_u(n, x), 40 * test_constants::pct_epsilon()); in BOOST_AUTO_TEST_CASE_TEMPLATE()
Dchebyshev_transform_test.cpp31 using boost::math::chebyshev_u;
/third_party/boost/boost/math/special_functions/
Dchebyshev.hpp104 chebyshev_u(unsigned n, Real const & x, const Policy&) in chebyshev_u() function
112 inline typename tools::promote_args<Real>::type chebyshev_u(unsigned n, Real const & x) in chebyshev_u() function
114 return chebyshev_u(n, x, policies::policy<>()); in chebyshev_u()
Dmath_fwd.hpp277 chebyshev_u(unsigned n, Real const & x, const Policy&);
279 typename tools::promote_args<Real>::type chebyshev_u(unsigned n, Real const & x);
1266 …Real chebyshev_u(unsigned n, Real const & x){ return ::boost::math::chebyshev_u(n, x, Policy()); }\
/third_party/boost/libs/math/doc/sf/
Dchebyshev.qbk28 ``__sf_result`` chebyshev_u(unsigned n, Real const & x);
31 ``__sf_result`` chebyshev_u(unsigned n, Real const & x, const ``__Policy``&);
95 Chebyshev polynomials of the second kind can be evaluated via `chebyshev_u`:
98 double U1 = boost::math::chebyshev_u(1, x);
106 For this reason, `chebyshev_t` and `chebyshev_u` have code paths for /x > 1/ and /x < -1/ which do …
/third_party/boost/libs/math/test/compile_test/
Dinstantiate.hpp239 boost::math::chebyshev_u(1, v1); in instantiate()
453 boost::math::chebyshev_u(1, 2 * v1); in instantiate()
636 boost::math::chebyshev_u(1, v1, pol); in instantiate()
854 test::chebyshev_u(1, v1); in instantiate()
1082 boost::math::chebyshev_u(1, i); in instantiate_mixed()
1233 boost::math::chebyshev_u(1, i, pol); in instantiate_mixed()
1390 test::chebyshev_u(1, i); in instantiate_mixed()