LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
|
Check if a given type T is an Eigen::Matrix. More...
#include <lf/base/eigen_tools.h>
Check if a given type T is an Eigen::Matrix.
SCALAR | If set to void (default), T can have any scalar type. Otherwise T must have the scalar type SCALAR . |
ROWS | If set to -1 (default), T can have any number of rows. Otherwise T must have a dynamic number of rows or the number of rows known at compile time must equal ROWS . |
COLS | If set to -1 (default), T can have any number of columns. Otherwise T must have a dynamic number of columns or the number of columns known at compile time must equal COLS . |
T
could have a dynamic number of rows and columns while still fulfilling the concept Eigen::Matrix<T, void, 5, 1>
. Definition at line 70 of file eigen_tools.h.