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