Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/err/invalid_argument.hpp>
#include <stan/math/prim/fun/size.hpp>
#include <stan/math/prim/meta/is_vector.hpp>
#include <algorithm>
#include <sstream>
#include <string>
Go to the source code of this file.
Namespaces | |
namespace | stan |
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation from C or the boost::math::lgamma implementation. | |
namespace | stan::math |
Matrices and templated mathematical functions. | |
Functions | |
void | stan::math::check_consistent_sizes_mvt (const char *) |
Trivial no input case, this function is a no-op. | |
template<typename T1 > | |
void | stan::math::check_consistent_sizes_mvt (const char *, const char *, const T1 &) |
Base case of recursion, this function is a no-op. | |
template<typename T1 , typename T2 , typename... Ts> | |
void | stan::math::check_consistent_sizes_mvt (const char *function, const char *name1, const T1 &x1, const char *name2, const T2 &x2, const Ts &... names_and_xs) |
Check that the provided multivariate inputs are of consistent size with each other. | |