Automatic Differentiation
 
Loading...
Searching...
No Matches
operator_multiplication.hpp File Reference

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 > &x, const fvar< T > &y)
 Return the product of the two arguments.
 
template<typename T >
fvar< T > stan::math::operator* (double x, const fvar< T > &y)
 Return the product of the two arguments.
 
template<typename T >
fvar< T > stan::math::operator* (const fvar< T > &x, double y)
 Return the product of the two arguments.
 
template<typename T >
std::complex< stan::math::fvar< T > > stan::math::operator* (const std::complex< stan::math::fvar< T > > &x, const std::complex< stan::math::fvar< T > > &y)
 Return the product of the two complex fvar<T> arguments.
 
template<typename T >
std::complex< stan::math::fvar< T > > stan::math::operator* (const std::complex< double > &x, const std::complex< stan::math::fvar< T > > &y)
 Return the product of std::complex<double> and std::complex<fvar<T>> arguments.
 
template<typename T >
std::complex< stan::math::fvar< T > > stan::math::operator* (const std::complex< stan::math::fvar< T > > &x, const std::complex< double > &y)
 Return the product of std::complex<double> and std::complex<fvar<T>> arguments.