Calculate the size of the largest multivariate input.
A multivariate container is either an Eigen matrix, whose mvt size is 1, or an std::vector of Eigen matrices, whose mvt size is the size of the std::vector. It is an error to supply any other type of input.
- Template Parameters
-
T1 | type of the first input |
Ts | types of the other inputs |
- Parameters
-
x1 | first input |
xs | other inputs |
- Returns
- the size of the largest input
- Exceptions
-
`invalid_argument` | if provided with an input that is not an Eigen matrix or std::vector of Eigen matrices |
Definition at line 25 of file max_size_mvt.hpp.