Searched refs:chebyshev_t_prime (Results 1 – 7 of 7) sorted by relevance
/third_party/boost/libs/math/test/ |
D | chebyshev_test.cpp | 23 using boost::math::chebyshev_t_prime; 68 BOOST_CHECK_CLOSE_FRACTION(chebyshev_t_prime(0, x), Real(0), tol); in test_derivatives() 69 BOOST_CHECK_CLOSE_FRACTION(chebyshev_t_prime(1, x), Real(1), tol); in test_derivatives() 70 BOOST_CHECK_CLOSE_FRACTION(chebyshev_t_prime(2, x), 4*x, tol); in test_derivatives() 71 BOOST_CHECK_CLOSE_FRACTION(chebyshev_t_prime(3, x), 3*(4*x*x - 1), tol); in test_derivatives() 72 BOOST_CHECK_CLOSE_FRACTION(chebyshev_t_prime(4, x), 16*x*(2*x*x - 1), tol); in test_derivatives()
|
D | test_autodiff_5.cpp | 68 boost::math::chebyshev_t_prime(n, make_fvar<T, m>(x)).derivative(0u), in BOOST_AUTO_TEST_CASE_TEMPLATE() 69 boost::math::chebyshev_t_prime(n, x), in BOOST_AUTO_TEST_CASE_TEMPLATE()
|
D | chebyshev_transform_test.cpp | 30 using boost::math::chebyshev_t_prime;
|
/third_party/boost/boost/math/special_functions/ |
D | chebyshev.hpp | 119 chebyshev_t_prime(unsigned n, Real const & x, const Policy&) in chebyshev_t_prime() function 131 inline typename tools::promote_args<Real>::type chebyshev_t_prime(unsigned n, Real const & x) in chebyshev_t_prime() function 133 return chebyshev_t_prime(n, x, policies::policy<>()); in chebyshev_t_prime()
|
D | math_fwd.hpp | 283 chebyshev_t_prime(unsigned n, Real const & x, const Policy&); 285 typename tools::promote_args<Real>::type chebyshev_t_prime(unsigned n, Real const & x); 1269 …Real chebyshev_t_prime(unsigned n, Real const & x){ return ::boost::math::chebyshev_t_prime(n, x, …
|
/third_party/boost/libs/math/doc/sf/ |
D | chebyshev.qbk | 34 ``__sf_result`` chebyshev_t_prime(unsigned n, Real const & x); 53 double T12_prime = boost::math::chebyshev_t_prime(12, x);
|
/third_party/boost/libs/math/test/compile_test/ |
D | instantiate.hpp | 240 boost::math::chebyshev_t_prime(1, v1); in instantiate() 454 boost::math::chebyshev_t_prime(1, 2 * v1); in instantiate() 637 boost::math::chebyshev_t_prime(1, v1, pol); in instantiate() 855 test::chebyshev_t_prime(1, v1); in instantiate() 1083 boost::math::chebyshev_t_prime(1, i); in instantiate_mixed() 1234 boost::math::chebyshev_t_prime(1, i, pol); in instantiate_mixed() 1391 test::chebyshev_t_prime(1, s); in instantiate_mixed()
|