It implements the Jacobi-Davidson method with preconditioned conjugate gradient solution of the arising linear systems.
It is a modified version of the JDQR by Gerard Sleijpen, based on the results in the paper
JDRPCG is a version of JDCG that uses regular preconditioning as documented in
this latter report
| File: | jdcg.m |
|---|---|
| Requires: | Matlab Version 5.1. or higher |
| Function: | [X,Lambda,HISTORY] = jdcg(matrix/filename,K,SIGMA,OPTIONS); |
Main function with dependencies for standard eigenproblems. Enter help jdcg within a Matlab session for information on input and output arguments.
| File: | jdrpcg.m |
|---|---|
| Requires: | Matlab Version 5.1. or higher |
| Function: | [X,Lambda,HISTORY] = jdrpcg(matrix/filename,K,SIGMA,OPTIONS); |
Main function with dependencies for standard eigenproblems. Enter help jdrpcg within a Matlab session for information on input and output arguments.
| File: | jdcg_gep.m |
|---|---|
| Requires: | Matlab Version 5.1. or higher |
| Function: | [X,Lambda,HISTORY] = jdcg(matrix/filename,matrix/filename,K,SIGMA,OPTIONS); |
Main function with dependencies for generalized eigenproblems. Enter help jdcg_gep within a Matlab session for information on input and output arguments.