1#ifndef STAN_MATH_REV_FUN_COSH_HPP
2#define STAN_MATH_REV_FUN_COSH_HPP
46 a.adj() += vi.adj() * std::sinh(a.val());
57template <
typename VarMat, require_var_matrix_t<VarMat>* =
nullptr>
58inline auto cosh(
const VarMat& a) {
60 a.val().array().cosh().matrix(), [a](
const auto& vi)
mutable {
61 a.adj() += vi.adj().cwiseProduct(a.val().array().sinh().matrix());
71inline std::complex<var>
cosh(
const std::complex<var>& z) {
std::complex< V > complex_cosh(const std::complex< V > &z)
Return the hyperbolic cosine of the complex argument.
var_value< plain_type_t< T > > make_callback_var(T &&value, F &&functor)
Creates a new var initialized with a callback_vari with a given value and reverse-pass callback funct...
fvar< T > cosh(const fvar< T > &x)
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...