1 #ifndef STAN_MATH_PRIM_MAT_FUN_CHOLESKY_FACTOR_CONSTRAIN_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_CHOLESKY_FACTOR_CONSTRAIN_HPP
27 Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic>
33 "num rows (must be greater or equal to num cols)",
37 "((N * (N + 1)) / 2 + (M - N) * N)",
38 ((N * (N + 1)) / 2 + (M - N) * N));
39 Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic> y(M, N);
43 for (
int m = 0; m < N; ++m) {
44 for (
int n = 0; n < m; ++n)
46 y(m, m) =
exp(x(pos++));
47 for (
int n = m + 1; n < N; ++n)
51 for (
int m = N; m < M; ++m)
52 for (
int n = 0; n < N; ++n)
72 Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic>
79 "((N * (N + 1)) / 2 + (M - N) * N)",
80 ((N * (N + 1)) / 2 + (M - N) * N));
82 std::vector<T> log_jacobians(N);
83 for (
int n = 0; n < N; ++n) {
85 log_jacobians[n] = x(pos++);
87 lp +=
sum(log_jacobians);
fvar< T > sum(const std::vector< fvar< T > > &m)
Return the sum of the entries of the specified standard vector.
bool check_greater_or_equal(const char *function, const char *name, const T_y &y, const T_low &low)
Return true if y is greater or equal than low.
Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > cholesky_factor_constrain(const Eigen::Matrix< T, Eigen::Dynamic, 1 > &x, int M, int N)
Return the Cholesky factor of the specified size read from the specified vector.
fvar< T > exp(const fvar< T > &x)
bool check_size_match(const char *function, const char *name_i, T_size1 i, const char *name_j, T_size2 j)
Return true if the provided sizes match.