Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/fwd/core/fvar.hpp>
#include <stan/math/prim/core/operator_division.hpp>
#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 T > | |
fvar< T > | stan::math::operator/ (const fvar< T > &x1, const fvar< T > &x2) |
Return the result of dividing the first argument by the second. | |
template<typename T , typename U , require_arithmetic_t< U > * = nullptr> | |
fvar< T > | stan::math::operator/ (const fvar< T > &x1, U x2) |
Return the result of dividing the first argument by the second. | |
template<typename T , typename U , require_arithmetic_t< U > * = nullptr> | |
fvar< T > | stan::math::operator/ (U x1, const fvar< T > &x2) |
Return the result of dividing the first argument by the second. | |
template<typename T > | |
std::complex< fvar< T > > | stan::math::operator/ (const std::complex< fvar< T > > &x1, const std::complex< fvar< T > > &x2) |
template<typename T , typename U , require_arithmetic_t< U > * = nullptr> | |
std::complex< fvar< T > > | stan::math::operator/ (const std::complex< fvar< T > > &x1, const std::complex< U > &x2) |
template<typename T > | |
std::complex< fvar< T > > | stan::math::operator/ (const std::complex< fvar< T > > &x1, const fvar< T > &x2) |
template<typename T , typename U , require_arithmetic_t< U > * = nullptr> | |
std::complex< fvar< T > > | stan::math::operator/ (const std::complex< fvar< T > > &x1, U x2) |
template<typename T , typename U , require_arithmetic_t< U > * = nullptr> | |
std::complex< fvar< T > > | stan::math::operator/ (const std::complex< U > &x1, const std::complex< fvar< T > > &x2) |
template<typename T , typename U , require_arithmetic_t< U > * = nullptr> | |
std::complex< fvar< T > > | stan::math::operator/ (const std::complex< U > &x1, const fvar< T > &x2) |
template<typename T > | |
std::complex< fvar< T > > | stan::math::operator/ (const fvar< T > &x1, const std::complex< fvar< T > > &x2) |
template<typename T , typename U , typename = std::enable_if_t<std::is_arithmetic<U>::value>> | |
std::complex< fvar< T > > | stan::math::operator/ (const fvar< T > &x1, const std::complex< U > &x2) |
template<typename T , typename U , require_arithmetic_t< U > * = nullptr> | |
std::complex< fvar< T > > | stan::math::operator/ (U x1, const std::complex< fvar< T > > &x2) |