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