Stan Math Library  2.11.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 
13  namespace math {
37  template <typename T_y>
38  bool
40  const char* function,
41  const char* name,
42  const Eigen::Matrix<T_y, Eigen::Dynamic, Eigen::Dynamic>& y
43  ) {
44  using Eigen::Dynamic;
45  check_square(function, name, y);
46  check_lower_triangular(function, name, y);
47  for (int i = 0; i < y.rows(); ++i)
48  check_positive(function, name, y(i, i));
49  for (int i = 0; i < y.rows(); ++i) {
50  Eigen::Matrix<T_y, Dynamic, 1>
51  y_i = y.row(i).transpose();
52  check_unit_vector(function, name, y_i);
53  }
54  return true;
55  }
56 
57  }
58 }
59 #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.