Stan Math Library  2.9.0
reverse mode automatic differentiation
check_lower_triangular.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_ERR_CHECK_LOWER_TRIANGULAR_HPP
2 #define STAN_MATH_PRIM_MAT_ERR_CHECK_LOWER_TRIANGULAR_HPP
3 
7 #include <sstream>
8 #include <string>
9 
10 namespace stan {
11 
12  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  for (int n = 1; n < y.cols(); ++n) {
40  for (int m = 0; m < n && m < y.rows(); ++m) {
41  if (y(m, n) != 0) {
42  std::stringstream msg;
43  msg << "is not lower triangular;"
44  << " " << name << "[" << stan::error_index::value + m << ","
45  << stan::error_index::value + n << "]=";
46  std::string msg_str(msg.str());
47  domain_error(function, name, y(m, n),
48  msg_str.c_str());
49  return false;
50  }
51  }
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.
void domain_error(const char *function, const char *name, const T &y, const char *msg1, const char *msg2)
Throw a domain error with a consistently formatted message.

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