MRPT
2.0.1
|
A sparse matrix structure, wrapping T.
Davis' CSparse library (part of suitesparse) The type of the matrix entries is fixed to "double".
There are two formats for the non-zero entries in this matrix:
The latter is the "normal" format, which is expected by all mathematical operations defined in this class. There're three ways of initializing and populating a sparse matrix:
From an existing dense matrix:
Due to its practical utility, there is a special inner class CSparseMatrix::CholeskyDecomp to handle Cholesky-related methods and data.
Definition at line 98 of file CSparseMatrix.h.
#include <mrpt/math/CSparseMatrix.h>
Classes | |
class | CholeskyDecomp |
Auxiliary class to hold the results of a Cholesky factorization of a sparse matrix. More... | |
Public Member Functions | |
Constructors, destructor & copy operations | |
CSparseMatrix (const size_t nRows=0, const size_t nCols=0) | |
Create an initially empty sparse matrix, in the "triplet" form. More... | |
template<typename T > | |
CSparseMatrix (const CSparseMatrixTemplate< T > &data) | |
A good way to initialize a sparse matrix from a list of non nullptr elements. More... | |
template<typename T , size_t N, size_t M> | |
CSparseMatrix (const CMatrixFixed< T, N, M > &MAT) | |
Constructor from a dense matrix of any kind existing in MRPT, creating a "column-compressed" sparse matrix. More... | |
template<typename T > | |
CSparseMatrix (const CMatrixDynamic< T > &MAT) | |
Constructor from a dense matrix of any kind existing in MRPT, creating a "column-compressed" sparse matrix. More... | |
CSparseMatrix (const CSparseMatrix &other) | |
Copy constructor. More... | |
CSparseMatrix (const cs *const sm) | |
Copy constructor from an existing "cs" CSparse data structure. More... | |
virtual | ~CSparseMatrix () |
Destructor. More... | |
CSparseMatrix & | operator= (const CSparseMatrix &other) |
Copy operator from another existing object. More... | |
void | swap (CSparseMatrix &other) |
Fast swap contents with another sparse matrix. More... | |
void | clear (const size_t nRows=1, const size_t nCols=1) |
Erase all previous contents and leave the matrix as a "triplet" ROWS x COLS matrix without any nonzero entry. More... | |
Math operations (the interesting stuff...) | |
void | add_AB (const CSparseMatrix &A, const CSparseMatrix &B) |
this = A+B More... | |
void | multiply_AB (const CSparseMatrix &A, const CSparseMatrix &B) |
this = A*B More... | |
void | matProductOf_Ab (const mrpt::math::CVectorDouble &b, mrpt::math::CVectorDouble &out_res) const |
out_res = this * b More... | |
CSparseMatrix | operator+ (const CSparseMatrix &other) const |
CSparseMatrix | operator* (const CSparseMatrix &other) const |
mrpt::math::CVectorDouble | operator* (const mrpt::math::CVectorDouble &other) const |
void | operator+= (const CSparseMatrix &other) |
void | operator*= (const CSparseMatrix &other) |
CSparseMatrix | transpose () const |
Private Member Functions | |
template<class MATRIX > | |
void | construct_from_mrpt_mat (const MATRIX &C) |
Initialization from a dense matrix of any kind existing in MRPT. More... | |
void | construct_from_triplet (const cs &triplet) |
Initialization from a triplet "cs", which is first compressed. More... | |
void | construct_from_existing_cs (const cs &sm) |
To be called by constructors only, assume previous pointers are trash and overwrite them. More... | |
void | internal_free_mem () |
free buffers (deallocate the memory of the i,p,x buffers) More... | |
void | copy (const cs *const sm) |
Copy the data from an existing "cs" CSparse data structure. More... | |
void | copy_fast (cs *const sm) |
Fast copy the data from an existing "cs" CSparse data structure, copying the pointers and leaving NULLs in the source structure. More... | |
Private Attributes | |
cs | sparse_matrix |
void | insert_entry (const size_t row, const size_t col, const double val) |
@ Access the matrix, get, set elements, etc. More... | |
void | insert_entry_fast (const size_t row, const size_t col, const double val) |
This was an optimized version, but is now equivalent to insert_entry() due to the need to be compatible with unmodified CSparse system libraries. More... | |
template<class MATRIX > | |
void | insert_submatrix (const size_t row, const size_t col, const MATRIX &M) |
ONLY for TRIPLET matrices: insert a given matrix (in any of the MRPT formats) at a given location of the sparse matrix. More... | |
void | compressFromTriplet () |
ONLY for TRIPLET matrices: convert the matrix in a column-compressed form. More... | |
void | get_dense (CMatrixDouble &outMat) const |
Return a dense representation of the sparse matrix. More... | |
bool | saveToTextFile_dense (const std::string &filName) |
save as a dense matrix to a text file More... | |
bool | saveToTextFile_sparse (const std::string &filName) |
Save sparse structure to a text file loadable from MATLAB (can be called on triplet or CCS matrices). More... | |
size_t | rows () const |
size_t | cols () const |
void | setRowCount (const size_t nRows) |
Change the number of rows in the matrix (can't be lower than current size) More... | |
void | setColCount (const size_t nCols) |
bool | isTriplet () const |
Returns true if this sparse matrix is in "triplet" form. More... | |
bool | isColumnCompressed () const |
Returns true if this sparse matrix is in "column compressed" form. More... | |
static void | cs2dense (const cs &SM, CMatrixDouble &outMat) |
Static method to convert a "cs" structure into a dense representation of the sparse matrix. More... | |
CSparseMatrix::CSparseMatrix | ( | const size_t | nRows = 0 , |
const size_t | nCols = 0 |
||
) |
Create an initially empty sparse matrix, in the "triplet" form.
Notice that you must call "compressFromTriplet" after populating the matrix and before using the math operatons on this matrix. The initial size can be later on extended with insert_entry() or setRowCount() & setColCount().
Notice that you must call "compressFromTriplet" after populating the matrix and before using the math operatons on this matrix. The initial size can be later on extended with insert_entry() or setRowCount() & setColCount().
Definition at line 150 of file CSparseMatrix.cpp.
References sparse_matrix.
|
inline |
A good way to initialize a sparse matrix from a list of non nullptr elements.
This constructor takes all the non-zero entries in "data" and builds a column-compressed sparse representation.
Definition at line 181 of file CSparseMatrix.h.
References ASSERTMSG_, construct_from_triplet(), mrpt::opengl::internal::data, insert_entry_fast(), and sparse_matrix.
|
inlineexplicit |
Constructor from a dense matrix of any kind existing in MRPT, creating a "column-compressed" sparse matrix.
Definition at line 208 of file CSparseMatrix.h.
References construct_from_mrpt_mat().
|
inlineexplicit |
Constructor from a dense matrix of any kind existing in MRPT, creating a "column-compressed" sparse matrix.
Definition at line 216 of file CSparseMatrix.h.
References construct_from_mrpt_mat().
CSparseMatrix::CSparseMatrix | ( | const CSparseMatrix & | other | ) |
Copy constructor.
Definition at line 24 of file CSparseMatrix.cpp.
References construct_from_existing_cs(), copy(), and sparse_matrix.
|
explicit |
Copy constructor from an existing "cs" CSparse data structure.
Definition at line 31 of file CSparseMatrix.cpp.
References construct_from_existing_cs(), and copy().
|
virtual |
Destructor.
Definition at line 96 of file CSparseMatrix.cpp.
References internal_free_mem().
void CSparseMatrix::add_AB | ( | const CSparseMatrix & | A, |
const CSparseMatrix & | B | ||
) |
this = A+B
Definition at line 191 of file CSparseMatrix.cpp.
References ASSERT_, cols(), copy_fast(), rows(), and sparse_matrix.
Referenced by operator+(), and operator+=().
void CSparseMatrix::clear | ( | const size_t | nRows = 1 , |
const size_t | nCols = 1 |
||
) |
Erase all previous contents and leave the matrix as a "triplet" ROWS x COLS matrix without any nonzero entry.
Erase all previous contents and leave the matrix as a "triplet" 1x1 matrix without any data.
Definition at line 99 of file CSparseMatrix.cpp.
References internal_free_mem(), and sparse_matrix.
Referenced by generateRandomSparseMatrix().
|
inline |
Definition at line 383 of file CSparseMatrix.h.
References sparse_matrix.
Referenced by add_AB(), mrpt::math::CSparseMatrix::CholeskyDecomp::CholeskyDecomp(), and matProductOf_Ab().
void CSparseMatrix::compressFromTriplet | ( | ) |
ONLY for TRIPLET matrices: convert the matrix in a column-compressed form.
Definition at line 265 of file CSparseMatrix.cpp.
References copy_fast(), isTriplet(), sparse_matrix, and THROW_EXCEPTION.
Referenced by generateRandomSparseMatrix(), mrpt::graphslam::optimize_graph_spa_levmarq(), and TEST().
|
private |
To be called by constructors only, assume previous pointers are trash and overwrite them.
Definition at line 134 of file CSparseMatrix.cpp.
References ASSERTMSG_, and sparse_matrix.
Referenced by CSparseMatrix().
|
inlineprivate |
Initialization from a dense matrix of any kind existing in MRPT.
Definition at line 105 of file CSparseMatrix.h.
References mrpt::system::os::memcpy(), and sparse_matrix.
Referenced by CSparseMatrix().
|
private |
Initialization from a triplet "cs", which is first compressed.
Definition at line 123 of file CSparseMatrix.cpp.
References copy_fast().
Referenced by CSparseMatrix().
|
private |
Copy the data from an existing "cs" CSparse data structure.
Definition at line 38 of file CSparseMatrix.cpp.
References ASSERTMSG_, mrpt::system::os::memcpy(), and sparse_matrix.
Referenced by CSparseMatrix(), and operator=().
|
private |
Fast copy the data from an existing "cs" CSparse data structure, copying the pointers and leaving NULLs in the source structure.
Definition at line 58 of file CSparseMatrix.cpp.
References internal_free_mem(), and sparse_matrix.
Referenced by add_AB(), compressFromTriplet(), construct_from_triplet(), and multiply_AB().
|
static |
Static method to convert a "cs" structure into a dense representation of the sparse matrix.
Definition at line 234 of file CSparseMatrix.cpp.
References ASSERT_, and mrpt::math::MatrixVectorBase< Scalar, Derived >::setZero().
Referenced by get_dense(), and mrpt::math::CSparseMatrix::CholeskyDecomp::get_L().
void CSparseMatrix::get_dense | ( | CMatrixDouble & | outMat | ) | const |
Return a dense representation of the sparse matrix.
Definition at line 260 of file CSparseMatrix.cpp.
References cs2dense(), and sparse_matrix.
Referenced by do_matrix_op_test(), do_test_init_random(), do_test_init_to_unit(), saveToTextFile_dense(), and TEST().
void CSparseMatrix::insert_entry | ( | const size_t | row, |
const size_t | col, | ||
const double | val | ||
) |
@ Access the matrix, get, set elements, etc.
Insert an element into a "cs", return false on error.
ONLY for TRIPLET matrices: insert a new non-zero entry in the matrix. This method cannot be used once the matrix is in column-compressed form. The size of the matrix will be automatically extended if the indices are out of the current limits.
Definition at line 162 of file CSparseMatrix.cpp.
References isTriplet(), sparse_matrix, THROW_EXCEPTION, and val.
Referenced by generateRandomSparseMatrix(), insert_entry_fast(), and TEST().
|
inline |
This was an optimized version, but is now equivalent to insert_entry() due to the need to be compatible with unmodified CSparse system libraries.
Definition at line 300 of file CSparseMatrix.h.
References insert_entry(), and val.
Referenced by CSparseMatrix(), insert_submatrix(), and mrpt::graphslam::optimize_graph_spa_levmarq().
|
inline |
ONLY for TRIPLET matrices: insert a given matrix (in any of the MRPT formats) at a given location of the sparse matrix.
This method cannot be used once the matrix is in column-compressed form. The size of the matrix will be automatically extended if the indices are out of the current limits. Since this is inline, it can be very efficient for fixed-size MRPT matrices.
Definition at line 317 of file CSparseMatrix.h.
References insert_entry_fast(), isTriplet(), sparse_matrix, and THROW_EXCEPTION.
Referenced by mrpt::graphslam::optimize_graph_spa_levmarq(), and TEST().
|
private |
free buffers (deallocate the memory of the i,p,x buffers)
Definition at line 115 of file CSparseMatrix.cpp.
References sparse_matrix.
Referenced by clear(), copy_fast(), and ~CSparseMatrix().
|
inline |
Returns true if this sparse matrix is in "column compressed" form.
Definition at line 406 of file CSparseMatrix.h.
References sparse_matrix.
Referenced by mrpt::math::CSparseMatrix::CholeskyDecomp::CholeskyDecomp().
|
inline |
Returns true if this sparse matrix is in "triplet" form.
Definition at line 399 of file CSparseMatrix.h.
References sparse_matrix.
Referenced by compressFromTriplet(), insert_entry(), and insert_submatrix().
void CSparseMatrix::matProductOf_Ab | ( | const mrpt::math::CVectorDouble & | b, |
mrpt::math::CVectorDouble & | out_res | ||
) | const |
out_res = this * b
Definition at line 211 of file CSparseMatrix.cpp.
References ASSERT_EQUAL_, cols(), mrpt::math::CVectorDynamic< T >::resize(), rows(), mrpt::math::CVectorDynamic< T >::size(), and sparse_matrix.
Referenced by operator*().
void CSparseMatrix::multiply_AB | ( | const CSparseMatrix & | A, |
const CSparseMatrix & | B | ||
) |
this = A*B
Definition at line 201 of file CSparseMatrix.cpp.
References ASSERT_, copy_fast(), rows(), and sparse_matrix.
Referenced by operator*(), and operator*=().
|
inline |
Definition at line 260 of file CSparseMatrix.h.
References multiply_AB().
|
inline |
Definition at line 266 of file CSparseMatrix.h.
References matProductOf_Ab().
|
inline |
Definition at line 277 of file CSparseMatrix.h.
References multiply_AB().
|
inline |
Definition at line 254 of file CSparseMatrix.h.
References add_AB().
|
inline |
Definition at line 273 of file CSparseMatrix.h.
References add_AB().
CSparseMatrix & CSparseMatrix::operator= | ( | const CSparseMatrix & | other | ) |
Copy operator from another existing object.
Definition at line 175 of file CSparseMatrix.cpp.
References copy(), and sparse_matrix.
|
inline |
Definition at line 382 of file CSparseMatrix.h.
References sparse_matrix.
Referenced by add_AB(), mrpt::math::CSparseMatrix::CholeskyDecomp::CholeskyDecomp(), matProductOf_Ab(), and multiply_AB().
bool CSparseMatrix::saveToTextFile_dense | ( | const std::string & | filName | ) |
save as a dense matrix to a text file
Definition at line 280 of file CSparseMatrix.cpp.
References get_dense(), and mrpt::math::MatrixVectorBase< Scalar, Derived >::saveToTextFile().
bool CSparseMatrix::saveToTextFile_sparse | ( | const std::string & | filName | ) |
Save sparse structure to a text file loadable from MATLAB (can be called on triplet or CCS matrices).
The format of the text file is:
Instructions for loading from MATLAB in triplet form will be automatically writen to the output file as comments in th first lines:
Definition at line 299 of file CSparseMatrix.cpp.
References ASSERT_, mrpt::system::os::fclose(), mrpt::system::os::fopen(), mrpt::system::os::fprintf(), and sparse_matrix.
|
inline |
Definition at line 391 of file CSparseMatrix.h.
References ASSERT_, and sparse_matrix.
Referenced by generateRandomSparseMatrix(), and TEST().
|
inline |
Change the number of rows in the matrix (can't be lower than current size)
Definition at line 386 of file CSparseMatrix.h.
References ASSERT_, and sparse_matrix.
Referenced by generateRandomSparseMatrix(), and TEST().
void CSparseMatrix::swap | ( | CSparseMatrix & | other | ) |
Fast swap contents with another sparse matrix.
Definition at line 82 of file CSparseMatrix.cpp.
References sparse_matrix.
CSparseMatrix CSparseMatrix::transpose | ( | ) | const |
Definition at line 222 of file CSparseMatrix.cpp.
References ASSERT_, and sparse_matrix.
|
private |
Definition at line 101 of file CSparseMatrix.h.
Referenced by add_AB(), mrpt::math::CSparseMatrix::CholeskyDecomp::CholeskyDecomp(), clear(), cols(), compressFromTriplet(), construct_from_existing_cs(), construct_from_mrpt_mat(), copy(), copy_fast(), CSparseMatrix(), get_dense(), insert_entry(), insert_submatrix(), internal_free_mem(), isColumnCompressed(), isTriplet(), matProductOf_Ab(), multiply_AB(), operator=(), rows(), saveToTextFile_sparse(), setColCount(), setRowCount(), swap(), transpose(), and mrpt::math::CSparseMatrix::CholeskyDecomp::update().
Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020 |