![]() |
Stan Math Library
5.1.0
Automatic Differentiation
|
#include <stan/math/rev/core/std_complex.hpp>#include <stan/math/rev/core/operator_equal.hpp>#include <stan/math/rev/core/var.hpp>#include <stan/math/prim/meta.hpp>#include <complex>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 | |
| bool | stan::math::operator!= (const var &a, const var &b) |
| Inequality operator comparing two variables' values (C++). | |
| template<typename Arith , require_arithmetic_t< Arith > * = nullptr> | |
| bool | stan::math::operator!= (const var &a, Arith b) |
| Inequality operator comparing a variable's value and a double (C++). | |
| template<typename Arith , require_arithmetic_t< Arith > * = nullptr> | |
| bool | stan::math::operator!= (Arith a, const var &b) |
| Inequality operator comparing a double and a variable's value (C++). | |
| bool | stan::math::operator!= (const var &x, const std::complex< var > &z) |
Return false if the real number is equal to the real part of the complex number, and the imaginary part of the complex number is zero. | |
| bool | stan::math::operator!= (const std::complex< var > &z, const var &y) |
Return false if the real number is equal to the real part of the complex number, and the imaginary part of the complex number is zero. | |