1#ifndef STAN_MATH_REV_CONSTRAINT_UNIT_VECTOR_CONSTRAIN_HPP
2#define STAN_MATH_REV_CONSTRAINT_UNIT_VECTOR_CONSTRAIN_HPP
29template <
typename T, require_rev_col_vector_t<T>* =
nullptr>
31 using ret_type = return_var_matrix_t<T>;
34 arena_t<T> arena_y = y;
35 arena_t<promote_scalar_t<double, T>> arena_y_val = arena_y.val();
37 const double r = arena_y_val.norm();
38 arena_t<ret_type> res = arena_y_val / r;
41 arena_y.adj() += res.adj() / r
43 * ((arena_y_val.array() * res.adj().array()).sum()
60template <
typename T, require_eigen_col_vector_vt<is_var, T>* =
nullptr>
62 const auto& y_ref =
to_ref(y);
78template <
typename T, require_var_col_vector_t<T>* =
nullptr>
void reverse_pass_callback(F &&functor)
Puts a callback on the autodiff stack to be called in reverse pass.
auto unit_vector_constrain(const EigMat &y)
ref_type_t< T && > to_ref(T &&a)
This evaluates expensive Eigen expressions.
void check_nonzero_size(const char *function, const char *name, const T_y &y)
Check if the specified matrix/vector is of non-zero size.
auto dot_self(const T &a)
Returns squared norm of a vector or matrix.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...