template class mrpt::math::CMatrixDynamic
This template class provides the basic functionality for a general 2D any-size, resizable container of numerical or non-numerical elements.
NOTES:
This class is not serializable since it is a template. For using serialization, see mrpt::math::CMatrixD.
First row or column index is “0”.
This class includes range checks with ASSERT_() if compiling with “_DEBUG” or “MRPT_ALWAYS_CHECKS_DEBUG_MATRICES=1”.
Use asEigen() to get an
Eigen::Map<>
object and to access full Algebra functionality.
See also:
#include <mrpt/math/CMatrixDynamic.h> template <class T> class CMatrixDynamic: public mrpt::math::MatrixBase { public: // construction CMatrixDynamic(const CMatrixDynamic& m); CMatrixDynamic( size_t row = 0, size_t col = 0 ); template <typename U> CMatrixDynamic(const CMatrixDynamic<U>& m); template <class Derived> CMatrixDynamic(const Eigen::MatrixBase<Derived>& m); template <typename _Lhs, typename _Rhs, int Option> CMatrixDynamic(const Eigen::Product<_Lhs, _Rhs, Option>& p); template <typename Op, typename Lhs, typename Rhs> CMatrixDynamic(const Eigen::CwiseBinaryOp<Op, Lhs, Rhs>& p); CMatrixDynamic(const CMatrixDynamic& m, size_t cropRowCount, size_t cropColCount); template <std::size_t ROWS, std::size_t COLS> CMatrixDynamic(const CMatrixFixed<T, ROWS, COLS>& o); template <typename V, size_t N> CMatrixDynamic(size_t row, size_t col, V(&) theArray [N]); template <typename V> CMatrixDynamic(size_t row, size_t col, const V& theVector); CMatrixDynamic(CMatrixDynamic&& m); // methods CMatrixDynamic& operator = (const CMatrixDynamic<T>& m); template <typename U> CMatrixDynamic& operator = (const CMatrixDynamic<U>& m); template <class Derived> CMatrixDynamic& operator = (const Eigen::MatrixBase<Derived>& m); template <std::size_t ROWS, std::size_t COLS> CMatrixDynamic& operator = (const CMatrixFixed<T, ROWS, COLS>& m); template <typename V, size_t N> CMatrixDynamic& operator = (V(&) theArray [N]); CMatrixDynamic& operator = (CMatrixDynamic&& m); }; // direct descendants class CMatrixB; class CMatrixF;
Inherited Members
public: // methods void setConstant(const Scalar value); void setConstant(size_t nrows, size_t ncols, const Scalar value); void setConstant(size_t nrows, const Scalar value); void assign(const std::size_t N, const Scalar value); void setZero(); void setZero(size_t nrows, size_t ncols); void setZero(size_t nrows); static Derived Constant(const Scalar value); static Derived Constant(size_t nrows, size_t ncols, const Scalar value); static Derived Zero(); static Derived Zero(size_t nrows, size_t ncols); auto block(int start_row, int start_col, int BLOCK_ROWS, int BLOCK_COLS); auto block(int start_row, int start_col, int BLOCK_ROWS, int BLOCK_COLS) const; auto transpose(); auto transpose() const; auto array(); auto array() const; auto operator - () const; template <typename S2, class D2> auto operator + (const MatrixVectorBase<S2, D2>& m2) const; template <typename S2, class D2> void operator += (const MatrixVectorBase<S2, D2>& m2); template <typename S2, class D2> auto operator - (const MatrixVectorBase<S2, D2>& m2) const; template <typename S2, class D2> void operator -= (const MatrixVectorBase<S2, D2>& m2); template <typename S2, class D2> auto operator * (const MatrixVectorBase<S2, D2>& m2) const; auto operator * (const Scalar s) const; template <int N> CMatrixFixed<Scalar, N, 1> tail() const; template <int N> CMatrixFixed<Scalar, N, 1> head() const; Scalar& coeffRef(int r, int c); const Scalar& coeff(int r, int c) const; Scalar minCoeff(std::size_t& outIndexOfMin) const; Scalar minCoeff(std::size_t& rowIdx, std::size_t& colIdx) const; Scalar maxCoeff(std::size_t& outIndexOfMax) const; Scalar maxCoeff(std::size_t& rowIdx, std::size_t& colIdx) const; void operator += (Scalar s); void operator -= (Scalar s); void operator *= (Scalar s); CMatrixDynamic<Scalar> operator * (const CMatrixDynamic<Scalar>& v); Derived operator + (const Derived& m2) const; void operator += (const Derived& m2); Derived operator - (const Derived& m2) const; void operator -= (const Derived& m2); Derived operator * (const Derived& m2) const; Scalar dot(const MatrixVectorBase<Scalar, Derived>& v) const; template <typename OTHERMATVEC> bool operator == (const OTHERMATVEC& o) const; template <typename OTHERMATVEC> bool operator != (const OTHERMATVEC& o) const; Derived& mvbDerived(); const Derived& mvbDerived() const; auto col(int colIdx); auto col(int colIdx) const; auto row(int rowIdx); auto row(int rowIdx) const; template <typename VECTOR_LIKE> void extractRow(int rowIdx, VECTOR_LIKE& v) const; template <typename VECTOR_LIKE> VECTOR_LIKE extractRow(int rowIdx) const; template <typename VECTOR_LIKE> void extractColumn(int colIdx, VECTOR_LIKE& v) const; template <typename VECTOR_LIKE> VECTOR_LIKE extractColumn(int colIdx) const; template <int BLOCK_ROWS, int BLOCK_COLS> CMatrixFixed<Scalar, BLOCK_ROWS, BLOCK_COLS> extractMatrix( const int start_row = 0, const int start_col = 0 ) const; CMatrixDynamic<Scalar> extractMatrix( const int BLOCK_ROWS, const int BLOCK_COLS, const int start_row, const int start_col ) const; Derived& mbDerived(); const Derived& mbDerived() const; void setIdentity(); void setIdentity(const std::size_t N); static Derived Identity(); static Derived Identity(const std::size_t N);
Construction
CMatrixDynamic(const CMatrixDynamic& m)
Constructors.
template <typename U> CMatrixDynamic(const CMatrixDynamic<U>& m)
Copy (casting from if needed) from another matrix
template <class Derived> CMatrixDynamic(const Eigen::MatrixBase<Derived>& m)
Convert from Eigen matrix.
template <typename _Lhs, typename _Rhs, int Option> CMatrixDynamic(const Eigen::Product<_Lhs, _Rhs, Option>& p)
Convert from Eigen product.
template <typename Op, typename Lhs, typename Rhs> CMatrixDynamic(const Eigen::CwiseBinaryOp<Op, Lhs, Rhs>& p)
Convert from Eigen binary op.
CMatrixDynamic( const CMatrixDynamic& m, size_t cropRowCount, size_t cropColCount )
Copy constructor & crop from another matrix.
template <std::size_t ROWS, std::size_t COLS> CMatrixDynamic(const CMatrixFixed<T, ROWS, COLS>& o)
Constructor from fixed-size matrix:
template <typename V, size_t N> CMatrixDynamic( size_t row, size_t col, V(&) theArray [N] )
Constructor from a given size and a C array.
The array length must match cols x row.
const double numbers[] = { 1,2,3, 4,5,6 }; CMatrixDouble M(3,2, numbers);
template <typename V> CMatrixDynamic( size_t row, size_t col, const V& theVector )
Constructor from a given size and a STL container (std::vector, std::list,…) with the initial values.
The vector length must match cols x row.
CMatrixDynamic(CMatrixDynamic&& m)
Move ctor.
Methods
template <typename U> CMatrixDynamic& operator = (const CMatrixDynamic<U>& m)
Assignment operator from another matrix (possibly of a different type)
template <class Derived> CMatrixDynamic& operator = (const Eigen::MatrixBase<Derived>& m)
Assignment from an Eigen matrix.
template <std::size_t ROWS, std::size_t COLS> CMatrixDynamic& operator = (const CMatrixFixed<T, ROWS, COLS>& m)
Assignment from a fixed matrix.
template <typename V, size_t N> CMatrixDynamic& operator = (V(&) theArray [N])
Assignment operator for initializing from a C array (The matrix must be set to the correct size before invoking this asignament)
CMatrixDouble M(3,2); const double numbers[] = { 1,2,3, 4,5,6 }; M = numbers;
Refer also to the constructor with initialization data CMatrixDynamic::CMatrixDynamic
CMatrixDynamic& operator = (CMatrixDynamic&& m)
Move operator.