11 template <
size_t STATE_DIM,
size_t CONTROL_DIM,
class SCALAR =
double>
15 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
17 typedef Eigen::Matrix<SCALAR, STATE_DIM, CONTROL_DIM>
Base;
22 template <
typename OtherDerived>
27 template <
typename OtherDerived>
30 this->Base::operator=(other);
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef Eigen::Matrix< SCALAR, STATE_DIM, CONTROL_DIM > Base
Definition: StateControlMatrix.h:17
virtual ~StateControlMatrix()
Definition: StateControlMatrix.h:20
StateControlMatrix(const Eigen::MatrixBase< OtherDerived > &other)
This constructor allows you to construct MyVectorType from Eigen expressions.
Definition: StateControlMatrix.h:23
StateControlMatrix & operator=(const Eigen::MatrixBase< OtherDerived > &other)
This method allows you to assign Eigen expressions to MyVectorType.
Definition: StateControlMatrix.h:28
const Base & toImplementation() const
get const underlying Eigen type
Definition: StateControlMatrix.h:36
StateControlMatrix()
Definition: StateControlMatrix.h:19
Definition: StateControlMatrix.h:12
Base & toImplementation()
get underlying Eigen type
Definition: StateControlMatrix.h:34