Automatic Differentiation
 
Loading...
Searching...
No Matches
quad_form_sym.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_PRIM_FUN_QUAD_FORM_SYM_HPP
2#define STAN_MATH_PRIM_FUN_QUAD_FORM_SYM_HPP
3
7
8namespace stan {
9namespace math {
10
25template <typename EigMat1, typename EigMat2,
26 require_all_eigen_t<EigMat1, EigMat2>* = nullptr,
27 require_not_eigen_col_vector_t<EigMat2>* = nullptr,
28 require_vt_same<EigMat1, EigMat2>* = nullptr,
29 require_all_vt_arithmetic<EigMat1, EigMat2>* = nullptr>
30inline plain_type_t<EigMat2> quad_form_sym(EigMat1&& A, EigMat2&& B) {
31 check_multiplicable("quad_form_sym", "A", A, "B", B);
32 decltype(auto) A_ref = to_ref(std::forward<EigMat1>(A));
33 decltype(auto) B_ref = to_ref(std::forward<EigMat2>(B));
34 check_symmetric("quad_form_sym", "A", A_ref);
35 return make_holder([](auto&& ret) { return 0.5 * (ret + ret.transpose()); },
36 (B_ref.transpose() * A_ref * B_ref).eval());
37}
38
51template <typename EigMat, typename ColVec, require_eigen_t<EigMat>* = nullptr,
52 require_eigen_col_vector_t<ColVec>* = nullptr,
53 require_vt_same<EigMat, ColVec>* = nullptr,
54 require_all_vt_arithmetic<EigMat, ColVec>* = nullptr>
55inline value_type_t<EigMat> quad_form_sym(EigMat&& A, ColVec&& B) {
56 check_multiplicable("quad_form_sym", "A", A, "B", B);
57 decltype(auto) A_ref = to_ref(std::forward<EigMat>(A));
58 decltype(auto) B_ref = to_ref(std::forward<ColVec>(B));
59 check_symmetric("quad_form_sym", "A", A_ref);
60 return make_holder([](auto&& A_, auto&& B_) { return B_.dot(A_ * B_); },
61 std::forward<decltype(A_ref)>(A_ref),
62 std::forward<decltype(B_ref)>(B_ref));
63}
64
65} // namespace math
66} // namespace stan
67
68#endif
void check_symmetric(const char *function, const char *name, const matrix_cl< T > &y)
Check if the matrix_cl is symmetric.
typename value_type< T >::type value_type_t
Helper function for accessing underlying type.
void check_multiplicable(const char *function, const char *name1, const T1 &y1, const char *name2, const T2 &y2)
Check if the matrices can be multiplied.
T eval(T &&arg)
Inputs which have a plain_type equal to the own time are forwarded unmodified (for Eigen expressions ...
Definition eval.hpp:20
auto make_holder(F &&func, Args &&... args)
Calls given function with given arguments.
Definition holder.hpp:481
promote_scalar_t< return_type_t< EigMat1, EigMat2 >, EigMat2 > quad_form_sym(EigMat1 &&A, EigMat2 &&B)
Return the quadratic form of a symmetric matrix.
ref_type_t< T && > to_ref(T &&a)
This evaluates expensive Eigen expressions.
Definition to_ref.hpp:18
typename plain_type< std::decay_t< T > >::type plain_type_t
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...