G+Smo  25.01.0
Geometry + Simulation Modules
 
Loading...
Searching...
No Matches
gsSpectraSolver< MatrixType > Class Template Reference

Detailed Description

template<class MatrixType>
class gismo::gsSpectraSolver< MatrixType >

Eigenvalue solver for general real matrices.

Typical usage:

const index_t nEv = 2;
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 > >.