template<class MatrixType>
class gismo::gsSpectraSolver< MatrixType >
Eigenvalue solver for general real matrices.
Typical usage:
slv.compute();
if ( slv.info() == 0 )
{
gsInfo << slv.eigenvalues() <<
"\n";
gsInfo << slv.eigenvectors() <<
"\n";
}
Sparse matrix class, based on gsEigen::SparseMatrix.
Definition gsSparseMatrix.h:139
Eigenvalue solver for real symmetric matrices.
Definition gsSpectra.h:348
#define index_t
Definition gsConfig.h:32
#define gsInfo
Definition gsDebug.h:43
Inherits SpectraMatProd< MatrixType >, and GenEigsSolver< SpectraMatProd< MatrixType > >.