![]() |
Stan Math Library
5.3.0
Automatic Differentiation
|
#include <stan/math/fwd/meta.hpp>#include <stan/math/prim/functor/integrate_1d_gauss_kronrod.hpp>#include <stan/math/prim/fun/value_of.hpp>#include <stan/math/prim/meta/forward_as.hpp>#include <stan/math/prim/functor/apply.hpp>#include <stan/math/fwd/functor/finite_diff.hpp>Go to the source code of this file.
Namespaces | |
| namespace | stan |
| The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation from C or the boost::math::lgamma implementation. | |
| namespace | stan::math |
| Matrices and templated mathematical functions. | |
Functions | |
| template<typename F , typename T_a , typename T_b , typename... Args, require_any_st_fvar< T_a, T_b, Args... > * = nullptr> | |
| return_type_t< T_a, T_b, Args... > | stan::math::integrate_1d_gauss_kronrod_tol (const F &f, const T_a &a, const T_b &b, double relative_tolerance, double absolute_tolerance, int max_depth, std::ostream *msgs, const Args &... args) |
| Return the integral of f from a to b using adaptive Gauss-Kronrod (G21,K21) quadrature, with tangents computed via finite differences over the integrand parameters. | |
| template<typename F , typename T_a , typename T_b , typename... Args, require_any_st_fvar< T_a, T_b, Args... > * = nullptr> | |
| return_type_t< T_a, T_b, Args... > | stan::math::integrate_1d_gauss_kronrod (const F &f, const T_a &a, const T_b &b, std::ostream *msgs, const Args &... args) |
| Return the integral of f from a to b using adaptive Gauss-Kronrod (G21,K21) quadrature, with tangents computed via finite differences over the integrand parameters. | |