|
Spectra 1.2.0
Header-only C++ Library for Large Scale Eigenvalue Problems
|
#include <Spectra/MatOp/DenseGenRealShiftSolve.h>
Public Types | |
| using | Scalar = Scalar_ |
Public Member Functions | |
| template<typename Derived> | |
| DenseGenRealShiftSolve (const Eigen::MatrixBase< Derived > &mat) | |
| Index | rows () const |
| Index | cols () const |
| void | set_shift (const Scalar &sigma) |
| void | perform_op (const Scalar *x_in, Scalar *y_out) const |
This class defines the shift-solve operation on a general real matrix \(A\), i.e., calculating \(y=(A-\sigma I)^{-1}x\) for any real \(\sigma\) and vector \(x\). It is mainly used in the GenEigsRealShiftSolver eigen solver.
| 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. |
Definition at line 29 of file DenseGenRealShiftSolve.h.
| using Spectra::DenseGenRealShiftSolve< Scalar_, Flags >::Scalar = Scalar_ |
Element type of the matrix.
Definition at line 35 of file DenseGenRealShiftSolve.h.
|
inline |
Constructor to create the matrix operation object.
| mat | An Eigen matrix object, whose type can be Eigen::Matrix<Scalar, ...> (e.g. Eigen::MatrixXd and Eigen::MatrixXf), or its mapped version (e.g. Eigen::Map<Eigen::MatrixXd>). |
Definition at line 59 of file DenseGenRealShiftSolve.h.
|
inline |
Return the number of rows of the underlying matrix.
Definition at line 73 of file DenseGenRealShiftSolve.h.
|
inline |
Return the number of columns of the underlying matrix.
Definition at line 77 of file DenseGenRealShiftSolve.h.
|
inline |
Set the real shift \(\sigma\).
Definition at line 82 of file DenseGenRealShiftSolve.h.
|
inline |
Perform the shift-solve operation \(y=(A-\sigma I)^{-1}x\).
| x_in | Pointer to the \(x\) vector. |
| y_out | Pointer to the \(y\) vector. |
Definition at line 94 of file DenseGenRealShiftSolve.h.