1 #ifndef STAN_MATH_PRIM_MAT_ERR_CHECK_UNIT_VECTOR_HPP
2 #define STAN_MATH_PRIM_MAT_ERR_CHECK_UNIT_VECTOR_HPP
34 template <
typename T_prob>
37 const Eigen::Matrix<T_prob,
38 Eigen::Dynamic, 1>& theta) {
40 T_prob ssq = theta.squaredNorm();
42 std::stringstream msg;
43 msg <<
"is not a valid unit vector."
44 <<
" The sum of the squares of the elements should be 1, but is ";
45 std::string msg_str(msg.str());
fvar< T > fabs(const fvar< T > &x)
const double CONSTRAINT_TOLERANCE
The tolerance for checking arithmetic bounds In rank and in simplexes.
bool check_nonzero_size(const char *function, const char *name, const T_y &y)
Return true if the specified matrix/vector is of non-zero size.
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.
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.