#include <SparseGenMatProd.h>
Public Types | |
| using | Scalar = Scalar_ |
Public Member Functions | |
| Index | cols () const |
| Scalar | operator() (Index i, Index j) const |
| Matrix | operator* (const Eigen::Ref< const Matrix > &mat_in) const |
| void | perform_op (const Scalar *x_in, Scalar *y_out) const |
| Index | rows () const |
| template<typename Derived > | |
| SparseGenMatProd (const Eigen::SparseMatrixBase< Derived > &mat) | |
Private Types | |
| using | ConstGenericSparseMatrix = const Eigen::Ref< const SparseMatrix > |
| using | Index = Eigen::Index |
| using | MapConstVec = Eigen::Map< const Vector > |
| using | MapVec = Eigen::Map< Vector > |
| using | Matrix = Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > |
| using | SparseMatrix = Eigen::SparseMatrix< Scalar, Flags, StorageIndex > |
| using | Vector = Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > |
Private Attributes | |
| ConstGenericSparseMatrix | m_mat |
This class defines the matrix-vector multiplication operation on a sparse real matrix
, i.e., calculating
for any vector
. It is mainly used in the GenEigsSolver and SymEigsSolver eigen solvers.
| Scalar_ | The element type of the matrix, for example, float, double, and long double. |
| Flags | Either Eigen::ColMajor or Eigen::RowMajor, indicating the storage format of the input matrix. |
| StorageIndex | The type of the indices for the sparse matrix. |
Definition at line 29 of file SparseGenMatProd.h.
|
private |
Definition at line 44 of file SparseGenMatProd.h.
|
private |
Definition at line 38 of file SparseGenMatProd.h.
|
private |
Definition at line 40 of file SparseGenMatProd.h.
|
private |
Definition at line 41 of file SparseGenMatProd.h.
|
private |
Definition at line 42 of file SparseGenMatProd.h.
| using Spectra::SparseGenMatProd< Scalar_, Flags, StorageIndex >::Scalar = Scalar_ |
Element type of the matrix.
Definition at line 35 of file SparseGenMatProd.h.
|
private |
Definition at line 43 of file SparseGenMatProd.h.
|
private |
Definition at line 39 of file SparseGenMatProd.h.
|
inline |
Constructor to create the matrix operation object.
| mat | An Eigen sparse matrix object, whose type can be Eigen::SparseMatrix<Scalar, ...> or its mapped version Eigen::Map<Eigen::SparseMatrix<Scalar, ...> >. |
Definition at line 57 of file SparseGenMatProd.h.
|
inline |
Return the number of columns of the underlying matrix.
Definition at line 72 of file SparseGenMatProd.h.
|
inline |
Extract (i,j) element of the underlying matrix.
Definition at line 99 of file SparseGenMatProd.h.
|
inline |
Perform the matrix-matrix multiplication operation
.
Definition at line 91 of file SparseGenMatProd.h.
|
inline |
Perform the matrix-vector multiplication operation
.
| x_in | Pointer to the vector. |
| y_out | Pointer to the vector. |
Definition at line 81 of file SparseGenMatProd.h.
|
inline |
Return the number of rows of the underlying matrix.
Definition at line 68 of file SparseGenMatProd.h.
|
private |
Definition at line 46 of file SparseGenMatProd.h.