ARPACK-Armadillo
|
#include <SparseGenMatProd.h>
Public Member Functions | |
SparseGenMatProd (const SpMatrix &mat_) | |
int | rows () |
int | cols () |
void | perform_op (Scalar *x_in, Scalar *y_out) |
This class defines the matrix-vector multiplication operation on a sparse general real matrix \(A\), i.e., calculating \(y=Ax\) for any vector \(x\). It is mainly used in the GenEigsSolver and SymEigsSolver eigen solvers.
Definition at line 21 of file SparseGenMatProd.h.
|
inline |
Constructor to create the matrix operation object.
mat_ | An Armadillo sparse matrix object, whose type can be arma::sp_mat or arma::sp_fmat , depending on the template parameter Scalar defined. |
Definition at line 37 of file SparseGenMatProd.h.
|
inline |
Return the number of rows of the underlying matrix.
Definition at line 44 of file SparseGenMatProd.h.
|
inline |
Return the number of columns of the underlying matrix.
Definition at line 48 of file SparseGenMatProd.h.
|
inline |
Perform the matrix-vector multiplication operation \(y=Ax\).
x_in | Pointer to the \(x\) vector. |
y_out | Pointer to the \(y\) vector. |
Definition at line 57 of file SparseGenMatProd.h.