![]() |
Stan Math Library
5.1.0
Automatic Differentiation
|
#include <stan/math/fwd/meta.hpp>#include <stan/math/fwd/core.hpp>#include <stan/math/fwd/fun/inv.hpp>#include <stan/math/fwd/fun/inv_sqrt.hpp>#include <stan/math/fwd/fun/inv_square.hpp>#include <stan/math/fwd/fun/log.hpp>#include <stan/math/fwd/fun/sqrt.hpp>#include <stan/math/fwd/fun/square.hpp>#include <stan/math/prim/fun/pow.hpp>#include <cmath>#include <complex>#include <type_traits>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 T1 , typename T2 , require_any_fvar_t< base_type_t< T1 >, base_type_t< T2 > > * = nullptr, require_all_stan_scalar_t< T1, T2 > * = nullptr> | |
| auto | stan::math::pow (const T1 &x1, const T2 &x2) |
| template<typename T1 , typename T2 , require_any_container_t< T1, T2 > * = nullptr, require_all_not_matrix_st< is_var, T1, T2 > * = nullptr, require_any_fvar_t< base_type_t< T1 >, base_type_t< T2 > > * = nullptr> | |
| auto | stan::math::pow (T1 &&a, T2 &&b) |
| Returns the elementwise raising of the first argument to the power of the second argument. | |