Stan Math Library
4.9.0
Automatic Differentiation
|
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 U , typename V , typename = require_any_autodiff_t<U, V>> | |
bool | stan::math::operator!= (const std::complex< U > &x, const std::complex< V > &y) |
Return true if the complex numbers have unequal imaginary or complex parts. | |
template<typename U , typename V , typename = require_any_autodiff_t<U, V>> | |
bool | stan::math::operator!= (const std::complex< U > &x, const V &y) |
Return true if the first argument's real part is unequal to the second argument or the first argument's imaginary part is unequal to zero. | |
template<typename U , typename V , typename = require_any_autodiff_t<U, V>> | |
bool | stan::math::operator!= (const U &x, const std::complex< V > &y) |
Return true if the first argument is unequal to the real part of the second argument or the imaginary part of the second argument is nonzero. | |