MRPT
2.0.1
|
#include <CTraitsTest.h>
#include <gtest/gtest.h>
#include <mrpt/math/CSparseMatrix.h>
#include <mrpt/random.h>
#include <Eigen/Dense>
Go to the source code of this file.
Typedefs | |
using | TMatrixSMOperator = void(*)(const CSparseMatrix &M1, const CSparseMatrix &M2, CSparseMatrix &res) |
using | TMatrixDenseOperator = void(*)(const CMatrixDouble &M1, const CMatrixDouble &M2, CMatrixDouble &res) |
Functions | |
void | generateRandomSparseMatrix (size_t N, size_t M, size_t nEntries, CSparseMatrix &MAT) |
void | do_test_init_to_unit (size_t N) |
TEST (SparseMatrix, InitFromDenseUnit) | |
void | do_test_init_random (size_t N) |
TEST (SparseMatrix, InitFromDenseRandom) | |
TEST (SparseMatrix, InitFromTriplet) | |
TEST (SparseMatrix, InitFromSparse) | |
TEST (SparseMatrix, InitFromRandom) | |
void | do_matrix_op_test (size_t nRows1, size_t nCols1, size_t nNonZeros1, size_t nRows2, size_t nCols2, size_t nNonZeros2, TMatrixSMOperator op1, TMatrixDenseOperator op2) |
void | op_sparse_add (const CSparseMatrix &M1, const CSparseMatrix &M2, CSparseMatrix &res) |
void | op_dense_add (const CMatrixDouble &M1, const CMatrixDouble &M2, CMatrixDouble &res) |
TEST (SparseMatrix, Op_Add) | |
void | op_sparse_multiply_AB (const CSparseMatrix &M1, const CSparseMatrix &M2, CSparseMatrix &res) |
void | op_dense_multiply_AB (const CMatrixDouble &M1, const CMatrixDouble &M2, CMatrixDouble &res) |
TEST (SparseMatrix, Op_Multiply_AB) | |
TEST (SparseMatrix, CholeskyDecomp) | |
using TMatrixDenseOperator = void (*)( const CMatrixDouble& M1, const CMatrixDouble& M2, CMatrixDouble& res) |
Definition at line 131 of file CSparseMatrix_unittest.cpp.
using TMatrixSMOperator = void (*)( const CSparseMatrix& M1, const CSparseMatrix& M2, CSparseMatrix& res) |
Definition at line 129 of file CSparseMatrix_unittest.cpp.
void do_matrix_op_test | ( | size_t | nRows1, |
size_t | nCols1, | ||
size_t | nNonZeros1, | ||
size_t | nRows2, | ||
size_t | nCols2, | ||
size_t | nNonZeros2, | ||
TMatrixSMOperator | op1, | ||
TMatrixDenseOperator | op2 | ||
) |
Definition at line 133 of file CSparseMatrix_unittest.cpp.
References EXPECT_TRUE(), generateRandomSparseMatrix(), mrpt::math::CSparseMatrix::get_dense(), and mrpt::math::MatrixVectorBase< Scalar, Derived >::maxCoeff().
Referenced by TEST().
void do_test_init_random | ( | size_t | N | ) |
Definition at line 62 of file CSparseMatrix_unittest.cpp.
References mrpt::random::CRandomGenerator::drawGaussian1DMatrix(), EXPECT_TRUE(), mrpt::math::CSparseMatrix::get_dense(), and mrpt::random::getRandomGenerator().
Referenced by TEST().
void do_test_init_to_unit | ( | size_t | N | ) |
Definition at line 42 of file CSparseMatrix_unittest.cpp.
References EXPECT_TRUE(), mrpt::math::CSparseMatrix::get_dense(), and mrpt::math::MatrixBase< Scalar, Derived >::setIdentity().
Referenced by TEST().
void generateRandomSparseMatrix | ( | size_t | N, |
size_t | M, | ||
size_t | nEntries, | ||
CSparseMatrix & | MAT | ||
) |
Definition at line 22 of file CSparseMatrix_unittest.cpp.
References mrpt::math::CSparseMatrix::clear(), mrpt::math::CSparseMatrix::compressFromTriplet(), mrpt::random::getRandomGenerator(), mrpt::math::CSparseMatrix::insert_entry(), mrpt::math::CSparseMatrix::setColCount(), and mrpt::math::CSparseMatrix::setRowCount().
Referenced by do_matrix_op_test(), and TEST().
void op_dense_add | ( | const CMatrixDouble & | M1, |
const CMatrixDouble & | M2, | ||
CMatrixDouble & | res | ||
) |
Definition at line 169 of file CSparseMatrix_unittest.cpp.
Referenced by TEST().
void op_dense_multiply_AB | ( | const CMatrixDouble & | M1, |
const CMatrixDouble & | M2, | ||
CMatrixDouble & | res | ||
) |
Definition at line 189 of file CSparseMatrix_unittest.cpp.
References mrpt::math::CMatrixDynamic< T >::asEigen(), and mrpt::math::MatrixVectorBase< Scalar, Derived >::isSquare().
Referenced by TEST().
void op_sparse_add | ( | const CSparseMatrix & | M1, |
const CSparseMatrix & | M2, | ||
CSparseMatrix & | res | ||
) |
Definition at line 164 of file CSparseMatrix_unittest.cpp.
Referenced by TEST().
void op_sparse_multiply_AB | ( | const CSparseMatrix & | M1, |
const CSparseMatrix & | M2, | ||
CSparseMatrix & | res | ||
) |
Definition at line 184 of file CSparseMatrix_unittest.cpp.
Referenced by TEST().
TEST | ( | SparseMatrix | , |
InitFromDenseUnit | |||
) |
Definition at line 55 of file CSparseMatrix_unittest.cpp.
References do_test_init_to_unit().
TEST | ( | SparseMatrix | , |
InitFromDenseRandom | |||
) |
Definition at line 72 of file CSparseMatrix_unittest.cpp.
References do_test_init_random().
TEST | ( | SparseMatrix | , |
InitFromTriplet | |||
) |
Definition at line 79 of file CSparseMatrix_unittest.cpp.
References mrpt::math::CSparseMatrix::compressFromTriplet(), EXPECT_TRUE(), mrpt::math::CSparseMatrix::get_dense(), mrpt::math::CSparseMatrix::insert_entry(), mrpt::math::CSparseMatrix::setColCount(), and mrpt::math::CSparseMatrix::setRowCount().
TEST | ( | SparseMatrix | , |
InitFromSparse | |||
) |
Definition at line 103 of file CSparseMatrix_unittest.cpp.
References EXPECT_TRUE(), and mrpt::math::CSparseMatrix::get_dense().
TEST | ( | SparseMatrix | , |
InitFromRandom | |||
) |
Definition at line 121 of file CSparseMatrix_unittest.cpp.
References generateRandomSparseMatrix().
TEST | ( | SparseMatrix | , |
Op_Add | |||
) |
Definition at line 175 of file CSparseMatrix_unittest.cpp.
References do_matrix_op_test(), op_dense_add(), and op_sparse_add().
TEST | ( | SparseMatrix | , |
Op_Multiply_AB | |||
) |
Definition at line 198 of file CSparseMatrix_unittest.cpp.
References do_matrix_op_test(), op_dense_multiply_AB(), and op_sparse_multiply_AB().
TEST | ( | SparseMatrix | , |
CholeskyDecomp | |||
) |
Definition at line 212 of file CSparseMatrix_unittest.cpp.
References mrpt::math::CMatrixDynamic< T >::asEigen(), mrpt::math::MatrixBase< Scalar, Derived >::chol(), mrpt::math::CSparseMatrix::compressFromTriplet(), mrpt::random::CRandomGenerator::drawDefinitePositiveMatrix(), EXPECT_TRUE(), mrpt::math::CSparseMatrix::get_dense(), mrpt::math::CSparseMatrix::CholeskyDecomp::get_L(), mrpt::random::getRandomGenerator(), mrpt::math::CSparseMatrix::insert_submatrix(), and mrpt::math::MatrixVectorBase< Scalar, Derived >::transpose().
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 |