Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/meta.hpp>
#include <stan/math/rev/core/var.hpp>
#include <stan/math/rev/core/operator_addition.hpp>
#include <stan/math/rev/core/operator_subtraction.hpp>
#include <stan/math/rev/core/operator_plus_equal.hpp>
#include <stan/math/rev/core/operator_minus_equal.hpp>
#include <stan/math/rev/core/vv_vari.hpp>
#include <stan/math/rev/core/vd_vari.hpp>
#include <stan/math/prim/core/operator_multiplication.hpp>
#include <stan/math/prim/fun/constants.hpp>
#include <stan/math/prim/fun/is_any_nan.hpp>
#include <stan/math/prim/fun/isinf.hpp>
#include <stan/math/prim/fun/isnan.hpp>
Go to the source code of this file.
Classes | |
class | stan::math::internal::multiply_vv_vari |
class | stan::math::internal::multiply_vd_vari |
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. | |
namespace | stan::math::internal |
A comparator that works for any container type that has the brackets operator. | |
Functions | |
var | stan::math::operator* (const var &a, const var &b) |
Multiplication operator for two variables (C++). | |
template<typename Arith , require_arithmetic_t< Arith > * = nullptr> | |
var | stan::math::operator* (const var &a, Arith b) |
Multiplication operator for a variable and a scalar (C++). | |
template<typename Arith , require_arithmetic_t< Arith > * = nullptr> | |
var | stan::math::operator* (Arith a, const var &b) |
Multiplication operator for a scalar and a variable (C++). | |
std::complex< stan::math::var > | stan::math::operator* (const std::complex< stan::math::var > &x, const std::complex< stan::math::var > &y) |
Return the product of std::complex<var> arguments. | |
std::complex< stan::math::var > | stan::math::operator* (const std::complex< double > &x, const std::complex< stan::math::var > &y) |
Return the product of std::complex<double> and std::complex<var> arguments. | |
std::complex< stan::math::var > | stan::math::operator* (const std::complex< stan::math::var > &x, const std::complex< double > &y) |
Return the product of std::complex<double> and std::complex<var> arguments. | |