Spectra
1.0.1
Header-only C++ Library for Large Scale Eigenvalue Problems
|
#include <Spectra/SymEigsShiftSolver.h>
Public Member Functions | |
SymEigsShiftSolver (OpType &op, Index nev, Index ncv, const Scalar &sigma) | |
Public Member Functions inherited from Spectra::SymEigsBase< DenseSymShiftSolve< double >, IdentityBOp > | |
void | init (const Scalar *init_resid) |
void | init () |
Index | compute (SortRule selection=SortRule::LargestMagn, Index maxit=1000, Scalar tol=1e-10, SortRule sorting=SortRule::LargestAlge) |
CompInfo | info () const |
Index | num_iterations () const |
Index | num_operations () const |
Vector | eigenvalues () const |
virtual Matrix | eigenvectors (Index nvec) const |
virtual Matrix | eigenvectors () const |
This class implements the eigen solver for real symmetric matrices using the shift-and-invert mode. The background information of the symmetric eigen solver is documented in the SymEigsSolver class. Here we focus on explaining the shift-and-invert mode.
The shift-and-invert mode is based on the following fact: If \(\lambda\) and \(x\) are a pair of eigenvalue and eigenvector of matrix \(A\), such that \(Ax=\lambda x\), then for any \(\sigma\), we have
\[(A-\sigma I)^{-1}x=\nu x\]
where
\[\nu=\frac{1}{\lambda-\sigma}\]
which indicates that \((\nu, x)\) is an eigenpair of the matrix \((A-\sigma I)^{-1}\).
Therefore, if we pass the matrix operation \((A-\sigma I)^{-1}y\) (rather than \(Ay\)) to the eigen solver, then we would get the desired values of \(\nu\), and \(\lambda\) can also be easily obtained by noting that \(\lambda=\sigma+\nu^{-1}\).
The reason why we need this type of manipulation is that the algorithm of Spectra (and also ARPACK) is good at finding eigenvalues with large magnitude, but may fail in looking for eigenvalues that are close to zero. However, if we really need them, we can set \(\sigma=0\), find the largest eigenvalues of \(A^{-1}\), and then transform back to \(\lambda\), since in this case largest values of \(\nu\) implies smallest values of \(\lambda\).
To summarize, in the shift-and-invert mode, the selection rule will apply to \(\nu=1/(\lambda-\sigma)\) rather than \(\lambda\). So a selection rule of LARGEST_MAGN
combined with shift \(\sigma\) will find eigenvalues of \(A\) that are closest to \(\sigma\). But note that the eigenvalues() method will always return the eigenvalues in the original problem (i.e., returning \(\lambda\) rather than \(\nu\)), and eigenvectors are the same for both the original problem and the shifted-and-inverted problem.
OpType | The name of the matrix operation class. Users could either use the wrapper classes such as DenseSymShiftSolve and SparseSymShiftSolve, or define their own that implements the type definition Scalar and all the public member functions as in DenseSymShiftSolve. |
Below is an example that illustrates the use of the shift-and-invert mode:
Also an example for user-supplied matrix shift-solve operation class:
Definition at line 149 of file SymEigsShiftSolver.h.
|
inline |
Constructor to create a eigen solver object using the shift-and-invert mode.
op | The matrix operation object that implements the shift-solve operation of \(A\): calculating \((A-\sigma I)^{-1}v\) for any vector \(v\). Users could either create the object from the wrapper class such as DenseSymShiftSolve, or define their own that implements all the public members as in DenseSymShiftSolve. |
nev | Number of eigenvalues requested. This should satisfy \(1\le nev \le n-1\), where \(n\) is the size of matrix. |
ncv | Parameter that controls the convergence speed of the algorithm. Typically a larger ncv_ means faster convergence, but it may also result in greater memory use and more matrix operations in each iteration. This parameter must satisfy \(nev < ncv \le n\), and is advised to take \(ncv \ge 2\cdot nev\). |
sigma | The value of the shift. |
Definition at line 190 of file SymEigsShiftSolver.h.