Searched refs:chebyshev_u (Results 1 – 7 of 7) sorted by relevance
/third_party/boost/libs/math/test/ |
D | chebyshev_test.cpp | 24 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()
|
D | test_autodiff_5.cpp | 64 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()
|
D | chebyshev_transform_test.cpp | 31 using boost::math::chebyshev_u;
|
/third_party/boost/boost/math/special_functions/ |
D | chebyshev.hpp | 104 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()
|
D | math_fwd.hpp | 277 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/ |
D | chebyshev.qbk | 28 ``__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/ |
D | instantiate.hpp | 239 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()
|