1#ifndef STAN_MATH_PRIM_FUN_DIAG_PRE_MULTIPLY_HPP
2#define STAN_MATH_PRIM_FUN_DIAG_PRE_MULTIPLY_HPP
23template <
typename T1,
typename T2, require_eigen_vector_t<T1>* =
nullptr,
24 require_eigen_t<T2>* =
nullptr,
25 require_all_not_st_var<T1, T2>* =
nullptr>
27 auto&& m1_ref =
to_ref(std::forward<T1>(m1));
28 auto&& m2_ref =
to_ref(std::forward<T2>(m2));
29 check_size_match(
"diag_pre_multiply",
"m1.size()", m1_ref.size(),
"m2.rows()",
32 [](
auto&& m1_,
auto&& m2_) {
33 return std::forward<decltype(m1_)>(m1_).asDiagonal()
34 * std::forward<decltype(m2_)>(m2_);
36 std::forward<decltype(m1_ref)>(m1_ref),
37 std::forward<decltype(m2_ref)>(m2_ref));
auto diag_pre_multiply(const T1 &m1, const T2 &m2)
Return the product of the diagonal matrix formed from the vector or row_vector and a matrix.
auto make_holder(F &&func, Args &&... args)
Calls given function with given arguments.
ref_type_t< T && > to_ref(T &&a)
This evaluates expensive Eigen expressions.
void check_size_match(const char *function, const char *name_i, T_size1 i, const char *name_j, T_size2 j)
Check if the provided sizes match.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...