← Back to team overview

dolfin team mailing list archive

Eigenvalue solver class

 

I've added a class EigenvalueSolver and removed the eigenvalue function from the
class GMRES.

To use it,

Vector EigenReal, EigenComplex;
EigenvalueSolver esolve;

// Return all eigenvalues of the matrix A in the vectors 
// EigenReal (real component) and EigenComplex (complex component) 
esolve.eigen(A, EigenReal, EigenComplex); 

Garth





Follow ups