This template class extends the class "CMatrixTemplate" for storing "objects" at each matrix entry.
This class allows a very efficient representation of sparse matrixes where each cell is an arbitrary C++ class, but its use must carefully observe the following rules:
Definition at line 51 of file CMatrixTemplateObjects.h.
#include <mrpt/math/CMatrixTemplateObjects.h>

Public Types | |
| typedef T * | value_type |
| The type of the matrix elements. | |
| typedef T *& | reference |
| typedef const T *& | const_reference |
| typedef std::size_t | size_type |
| typedef std::ptrdiff_t | difference_type |
Public Member Functions | |||
| CMatrixTemplateObjects (const CMatrixTemplate< T > &m) | |||
| Copy constructor. | |||
| CMatrixTemplateObjects (size_t row=3, size_t col=3) | |||
| Constructor. | |||
| virtual void | setSize (size_t row, size_t col) | ||
| Changes the size of matrix. | |||
| virtual | ~CMatrixTemplateObjects () | ||
| Destructor. | |||
| void | freeAllObjects () | ||
| Delete all the objects in the matrix and set all entries to NULL pointers. | |||
| CMatrixTemplateObjects & | operator= (const CMatrixTemplateObjects &m) | ||
| Assignment operator. | |||
| void | setDestroyBehavior (bool freeObjects=true) | ||
| Sets the behavior on matrix destroy. | |||
| void | allocAllObjects () | ||
| Alloc memory for all the non-NULL entries in the matrix. | |||
| void | ASSERT_ENOUGHROOM (size_t r, size_t c) const | ||
| Checks whether the rows [r-N,r+N] and the columns [c-N,c+N] are present in the matrix. | |||
| void | fillAll (const T *&val) | ||
| void | swap (CMatrixTemplate< T * > &o) | ||
| Swap with another matrix very efficiently (just swaps a pointer and two integer values). | |||
| size_t | getRowCount () const | ||
| Number of rows in the matrix. | |||
| size_t | getColCount () const | ||
| Number of columns in the matrix. | |||
| CMatrixTemplateSize | size () const | ||
| Get a 2-vector with [NROWS NCOLS] (as in MATLAB command size(x)) | |||
| void | setSize (size_t row, size_t col, bool zeroNewElements=false) | ||
| Changes the size of matrix, maintaining the previous contents. | |||
| void | resize (const CMatrixTemplateSize &siz, bool zeroNewElements=false) | ||
| This method just checks has no effects in this class, but raises an exception if the expected size does not match. | |||
| T *& | operator() (size_t row, size_t col) | ||
| Subscript operator to get/set individual elements. | |||
| const T *& | operator() (size_t row, size_t col) const | ||
| Subscript operator to get individual elements. | |||
| T *& | operator() (size_t ith) | ||
| Subscript operator to get/set an individual element from a row or column matrix. | |||
| T * | operator() (size_t ith) const | ||
| Subscript operator to get/set an individual element from a row or column matrix. | |||
| CMatrixTemplate< T * > | operator() (const size_t row1, const size_t row2, const size_t col1, const size_t col2) const | ||
| Subscript operator to get a submatrix. | |||
| void | set_unsafe (size_t row, size_t col, const T *&v) | ||
| Fast but unsafe method to write a value in the matrix. | |||
| const T *& | get_unsafe (size_t row, size_t col) const | ||
| Fast but unsafe method to read a value from the matrix. | |||
| T *& | get_unsafe (size_t row, size_t col) | ||
| Fast but unsafe method to get a reference from the matrix. | |||
| T ** | get_unsafe_row (size_t row) | ||
| Fast but unsafe method to obtain a pointer to a given row of the matrix (Use only in time critical applications) | |||
| const T ** | get_unsafe_row (size_t row) const | ||
| Fast but unsafe method to obtain a pointer to a given row of the matrix (Use only in critical applications) | |||
| void | extractSubmatrix (const size_t row1, const size_t row2, const size_t col1, const size_t col2, CMatrixTemplate< T * > &out) const | ||
| Get a submatrix, given its bounds. | |||
| void | extractSubmatrix (const size_t row1, const size_t row2, const size_t col1, const size_t col2, Eigen::MatrixBase< Derived > &out) const | ||
| void | extractRows (size_t firstRow, size_t lastRow, CMatrixTemplate< T * > &out) const | ||
| Gets a series of contiguous rows. | |||
| void | extractColumns (size_t firstCol, size_t lastCol, CMatrixTemplate< T * > &out) const | ||
| Gets a series of contiguous columns. | |||
| void | extractCol (size_t nCol, std::vector< T * > &out, int startingRow=0) const | ||
Returns a given column to a vector (without modifying the matrix)
| |||
| void | extractCol (size_t nCol, CMatrixTemplate< T * > &out, int startingRow=0) const | ||
Gets a given column to a vector (without modifying the matrix)
| |||
| void | appendRow (const std::vector< T * > &in) | ||
| Appends a new row to the MxN matrix from a 1xN vector. | |||
| void | appendCol (const std::vector< T * > &in) | ||
| Appends a new column to the matrix from a vector. | |||
| void | insertCol (size_t nCol, const std::vector< T * > &in) | ||
| Inserts a column from a vector, replacing the current contents of that column. | |||
| void | getAsVector (std::vector< T * > &out) const | ||
| Returns a vector containing the matrix's values. | |||
Protected Member Functions | |
| void | realloc (size_t row, size_t col, bool newElementsToZero=false) |
| Internal use only: It reallocs the memory for the 2D matrix, maintaining the previous contents if posible. | |
Protected Attributes | |
| T *** | m_Val |
| size_t | m_Rows |
| size_t | m_Cols |
Private Attributes | |
| bool | m_freeObjects |
|
inherited |
Definition at line 66 of file CMatrixTemplate.h.
|
inherited |
Definition at line 68 of file CMatrixTemplate.h.
|
inherited |
Definition at line 65 of file CMatrixTemplate.h.
|
inherited |
Definition at line 67 of file CMatrixTemplate.h.
|
inherited |
The type of the matrix elements.
Definition at line 64 of file CMatrixTemplate.h.
|
inline |
Copy constructor.
Definition at line 59 of file CMatrixTemplateObjects.h.
|
inline |
Constructor.
Definition at line 65 of file CMatrixTemplateObjects.h.
References getColCount(), and getRowCount().
|
inlinevirtual |
Destructor.
Definition at line 82 of file CMatrixTemplateObjects.h.
References mrpt::math::CMatrixTemplateObjects< T >::freeAllObjects(), and mrpt::math::CMatrixTemplateObjects< T >::m_freeObjects.
|
inline |
Alloc memory for all the non-NULL entries in the matrix.
See the general description of the class on the top.
Definition at line 124 of file CMatrixTemplateObjects.h.
References getColCount(), and getRowCount().
|
inlineinherited |
Appends a new column to the matrix from a vector.
The length of the vector must match the number of rows of the matrix, unless it is (0,0). \exception std::exception On size mismatch.
Definition at line 538 of file CMatrixTemplate.h.
|
inlineinherited |
Appends a new row to the MxN matrix from a 1xN vector.
The lenght of the vector must match the width of the matrix, unless it's empty: in that case the matrix is resized to 1xN.
| std::exception | On incorrect vector length. |
Definition at line 509 of file CMatrixTemplate.h.
|
inlineinherited |
Checks whether the rows [r-N,r+N] and the columns [c-N,c+N] are present in the matrix.
Definition at line 127 of file CMatrixTemplate.h.
|
inlineinherited |
Returns a given column to a vector (without modifying the matrix)
| std::exception | On index out of bounds. |
Definition at line 463 of file CMatrixTemplate.h.
|
inlineinherited |
Gets a given column to a vector (without modifying the matrix)
| std::exception | On index out of bounds. |
Definition at line 481 of file CMatrixTemplate.h.
|
inlineinherited |
Gets a series of contiguous columns.
\exception std::logic_error On index out of bounds
Definition at line 455 of file CMatrixTemplate.h.
|
inlineinherited |
Gets a series of contiguous rows.
\exception std::logic_error On index out of bounds
Definition at line 445 of file CMatrixTemplate.h.
|
inlineinherited |
Get a submatrix, given its bounds.
Definition at line 412 of file CMatrixTemplate.h.
|
inlineinherited |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 426 of file CMatrixTemplate.h.
|
inlineinherited |
Fill all the elements with a given value (Note: named "fillAll" since "fill" will be used by child classes)
Definition at line 133 of file CMatrixTemplate.h.
|
inline |
Delete all the objects in the matrix and set all entries to NULL pointers.
Definition at line 90 of file CMatrixTemplateObjects.h.
References getColCount(), and getRowCount().
Referenced by mrpt::math::CMatrixTemplateObjects< T >::~CMatrixTemplateObjects().
|
inlineinherited |
Fast but unsafe method to read a value from the matrix.
Definition at line 364 of file CMatrixTemplate.h.
|
inlineinherited |
Fast but unsafe method to get a reference from the matrix.
Definition at line 375 of file CMatrixTemplate.h.
|
inlineinherited |
Fast but unsafe method to obtain a pointer to a given row of the matrix (Use only in time critical applications)
Definition at line 386 of file CMatrixTemplate.h.
|
inlineinherited |
Fast but unsafe method to obtain a pointer to a given row of the matrix (Use only in critical applications)
Definition at line 397 of file CMatrixTemplate.h.
|
inlineinherited |
Returns a vector containing the matrix's values.
Definition at line 566 of file CMatrixTemplate.h.
|
inlineinherited |
Number of columns in the matrix.
Definition at line 250 of file CMatrixTemplate.h.
|
inlineinherited |
Number of rows in the matrix.
Definition at line 245 of file CMatrixTemplate.h.
|
inlineinherited |
Inserts a column from a vector, replacing the current contents of that column.
\exception std::exception On index out of bounds
Definition at line 553 of file CMatrixTemplate.h.
|
inlineinherited |
Subscript operator to get/set individual elements.
Definition at line 275 of file CMatrixTemplate.h.
|
inlineinherited |
Subscript operator to get individual elements.
Definition at line 286 of file CMatrixTemplate.h.
|
inlineinherited |
Subscript operator to get/set an individual element from a row or column matrix.
| std::exception | If the object is not a column or row matrix. |
Definition at line 298 of file CMatrixTemplate.h.
|
inlineinherited |
Subscript operator to get/set an individual element from a row or column matrix.
| std::exception | If the object is not a column or row matrix. |
Definition at line 326 of file CMatrixTemplate.h.
|
inlineinherited |
Subscript operator to get a submatrix.
Definition at line 403 of file CMatrixTemplate.h.
|
inline |
Assignment operator.
Definition at line 103 of file CMatrixTemplateObjects.h.
References getColCount(), mrpt::math::CMatrixTemplate< T >::getColCount(), getRowCount(), mrpt::math::CMatrixTemplate< T >::getRowCount(), mrpt::math::CMatrixTemplate< T >::m_Val, and mrpt::math::CMatrixTemplate< T >::realloc().
|
inlineprotectedinherited |
Internal use only: It reallocs the memory for the 2D matrix, maintaining the previous contents if posible.
Definition at line 77 of file CMatrixTemplate.h.
|
inlineinherited |
This method just checks has no effects in this class, but raises an exception if the expected size does not match.
Definition at line 268 of file CMatrixTemplate.h.
|
inlineinherited |
Fast but unsafe method to write a value in the matrix.
Definition at line 353 of file CMatrixTemplate.h.
|
inline |
Sets the behavior on matrix destroy.
See the general description of the class on the top.
Definition at line 116 of file CMatrixTemplateObjects.h.
References mrpt::math::CMatrixTemplateObjects< T >::m_freeObjects.
|
inlinevirtual |
Changes the size of matrix.
Definition at line 74 of file CMatrixTemplateObjects.h.
References mrpt::math::CMatrixTemplate< T >::realloc().
|
inlineinherited |
Changes the size of matrix, maintaining the previous contents.
Definition at line 262 of file CMatrixTemplate.h.
|
inlineinherited |
Get a 2-vector with [NROWS NCOLS] (as in MATLAB command size(x))
Definition at line 253 of file CMatrixTemplate.h.
|
inlineinherited |
Swap with another matrix very efficiently (just swaps a pointer and two integer values).
Definition at line 140 of file CMatrixTemplate.h.
|
protectedinherited |
Definition at line 73 of file CMatrixTemplate.h.
|
private |
Definition at line 54 of file CMatrixTemplateObjects.h.
Referenced by mrpt::math::CMatrixTemplateObjects< T >::setDestroyBehavior(), and mrpt::math::CMatrixTemplateObjects< T >::~CMatrixTemplateObjects().
|
protectedinherited |
Definition at line 73 of file CMatrixTemplate.h.
|
protectedinherited |
Definition at line 72 of file CMatrixTemplate.h.
| Page generated by Doxygen 1.8.3 for MRPT 0.9.6 SVN: at Fri Feb 15 22:05:02 EST 2013 |