Stan Math Library  2.12.0
reverse mode automatic differentiation
check_cholesky_factor.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_ERR_CHECK_CHOLESKY_FACTOR_HPP
2 #define STAN_MATH_PRIM_MAT_ERR_CHECK_CHOLESKY_FACTOR_HPP
3 
8 
9 namespace stan {
10  namespace math {
32  template <typename T_y>
33  inline bool
35  const char* function,
36  const char* name,
37  const Eigen::Matrix<T_y, Eigen::Dynamic, Eigen::Dynamic>& y
38  ) {
39  check_less_or_equal(function, "columns and rows of Cholesky factor",
40  y.cols(), y.rows());
41  check_positive(function, "columns of Cholesky factor", y.cols());
42  check_lower_triangular(function, name, y);
43  for (int i = 0; i < y.cols(); ++i)
44  // FIXME: should report row
45  check_positive(function, name, y(i, i));
46  return true;
47  }
48 
49  }
50 }
51 #endif
bool check_cholesky_factor(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.
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_less_or_equal(const char *function, const char *name, const T_y &y, const T_high &high)
Return true if y is less or equal to high.

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