Stan Math Library  2.11.0
reverse mode automatic differentiation
length_mvt.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_META_LENGTH_MVT_HPP
2 #define STAN_MATH_PRIM_SCAL_META_LENGTH_MVT_HPP
3 
4 #include <stdexcept>
5 
6 namespace stan {
7 
8  template <typename T>
9  size_t length_mvt(const T& ) {
10  throw std::out_of_range("length_mvt passed to an unrecognized type.");
11  return 1U;
12  }
13 
14 }
15 #endif
16 
void out_of_range(const char *function, const int max, const int index, const char *msg1="", const char *msg2="")
Throw an out_of_range exception with a consistently formatted message.
size_t length_mvt(const Eigen::Matrix< T, R, C > &)
Definition: length_mvt.hpp:12

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