Stan Math Library  2.12.0
reverse mode automatic differentiation
check_cholesky_factor_corr.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_ERR_CHECK_CHOLESKY_FACTOR_CORR_HPP
2 #define STAN_MATH_PRIM_MAT_ERR_CHECK_CHOLESKY_FACTOR_CORR_HPP
3 
10 
11 namespace stan {
12  namespace math {
36  template <typename T_y>
37  bool
39  const char* function,
40  const char* name,
41  const Eigen::Matrix<T_y, Eigen::Dynamic, Eigen::Dynamic>& y
42  ) {
43  using Eigen::Dynamic;
44  check_square(function, name, y);
45  check_lower_triangular(function, name, y);
46  for (int i = 0; i < y.rows(); ++i)
47  check_positive(function, name, y(i, i));
48  for (int i = 0; i < y.rows(); ++i) {
49  Eigen::Matrix<T_y, Dynamic, 1>
50  y_i = y.row(i).transpose();
51  check_unit_vector(function, name, y_i);
52  }
53  return true;
54  }
55 
56  }
57 }
58 #endif
bool check_lower_triangular(const char *function, const char *name, const Eigen::Matrix< T_y, Eigen::Dynamic, Eigen::Dynamic > &y)
Return true if the specified matrix is lower triangular.
bool check_positive(const char *function, const char *name, const T_y &y)
Return true if y is positive.
bool check_cholesky_factor_corr(const char *function, const char *name, const Eigen::Matrix< T_y, Eigen::Dynamic, Eigen::Dynamic > &y)
Return true if the specified matrix is a valid Cholesky factor of a correlation matrix.
bool check_unit_vector(const char *function, const char *name, const Eigen::Matrix< T_prob, Eigen::Dynamic, 1 > &theta)
Return true if the specified vector is unit vector.
bool check_square(const char *function, const char *name, const Eigen::Matrix< T_y, Eigen::Dynamic, Eigen::Dynamic > &y)
Return true if the specified matrix is square.

     [ Stan Home Page ] © 2011–2016, Stan Development Team.