Home
last modified time | relevance | path

Searched refs:tangent_t2n (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/boost/math/special_functions/
Dbernoulli.hpp102 inline T tangent_t2n(const int i, const Policy &pol) in tangent_t2n() function
113 inline T tangent_t2n(const int i) in tangent_t2n() function
115 return boost::math::tangent_t2n<T>(i, policies::policy<>()); in tangent_t2n()
119 inline OutputIterator tangent_t2n(const int start_index, in tangent_t2n() function
134 inline OutputIterator tangent_t2n(const int start_index, in tangent_t2n() function
138 …return boost::math::tangent_t2n<T, OutputIterator>(start_index, number_of_tangent_t2n, out_it, pol… in tangent_t2n()
Dmath_fwd.hpp1075 T tangent_t2n(const int i, const Policy &pol);
1077 T tangent_t2n(const int i);
1079 OutputIterator tangent_t2n(const int start_index,
1084 OutputIterator tangent_t2n(const int start_index,
1683 T tangent_t2n(const int i)\
1684 { return boost::math::tangent_t2n<T>(i, Policy()); }\
1686 …OutputIterator tangent_t2n(int start_index, unsigned number_of_bernoullis_b2n, OutputIterator out_…
1687 { return boost::math::tangent_t2n<T>(start_index, number_of_bernoullis_b2n, out_it, Policy()); }\
/third_party/boost/libs/math/test/compile_test/
Dsf_bernoulli_incl_test.cpp25 check_result<float>(boost::math::tangent_t2n<float>(i)); in compile_and_link_test()
26 check_result<double>(boost::math::tangent_t2n<double>(i)); in compile_and_link_test()
28 check_result<long double>(boost::math::tangent_t2n<long double>(i)); in compile_and_link_test()
Dinstantiate.hpp376 boost::math::tangent_t2n<RealType>(i); in instantiate()
377 boost::math::tangent_t2n<RealType>(i, i, &v1); in instantiate()
778 boost::math::tangent_t2n<RealType>(i, pol); in instantiate()
779 boost::math::tangent_t2n<RealType>(i, i, &v1, pol); in instantiate()
/third_party/boost/libs/math/test/
Dtest_bernoulli_constants.cpp139 T t2n = boost::math::tangent_t2n<T>(i); in test()
186 boost::math::tangent_t2n<T>(0, boost::math::max_bernoulli_b2n<T>::value + 20, bn); in test()
190 BOOST_CHECK_EQUAL(bn[i], boost::math::tangent_t2n<T>(i)); in test()
199 …BOOST_MATH_CHECK_THROW(boost::math::tangent_t2n<T>(overflow_index, boost::math::policies::make_pol… in test()
Dtest_autodiff_4.cpp186 auto autodiff_v = boost::math::tangent_t2n<autodiff_fvar<T, m>>(i_); in BOOST_AUTO_TEST_CASE_TEMPLATE()
187 auto anchor_v = boost::math::tangent_t2n<T>(i_); in BOOST_AUTO_TEST_CASE_TEMPLATE()
/third_party/boost/libs/math/doc/sf/
Dbernoulli_numbers.qbk190 T tangent_t2n(const int i); // Single tangent number (default policy).
193 T tangent_t2n(const int i, const Policy &pol); // Single tangent number (user policy).
197 OutputIterator tangent_t2n(const int start_index,
203 OutputIterator tangent_t2n(const int start_index,
Dnumber_series.qbk197 T tangent_t2n(const int i); // Single tangent number (default policy).
200 T tangent_t2n(const int i, const Policy &pol); // Single tangent number (user policy).
204 OutputIterator tangent_t2n(const int start_index,
210 OutputIterator tangent_t2n(const int start_index,
/third_party/boost/libs/math/example/
Dbernoulli_example.cpp126 …boost::math::tangent_t2n<float>(1, 6, std::back_inserter(tn)); // Fill vector with even Tangent nu… in main()
/third_party/boost/boost/math/special_functions/detail/
Dbernoulli_details.hpp165 boost::math::tangent_t2n<T>(2, Policy()); in init()