1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*
ARPACK++ v1.0 8/1/1997
c++ interface to ARPACK code.
MODULE CMatrixE.h
Complex matrix template used to illustrate how to solve
a generalized eigenvalue problem in shift and invert mode.
ARPACK Authors
Richard Lehoucq
Danny Sorensen
Chao Yang
Dept. of Computational & Applied Mathematics
Rice University
Houston, Texas
*/
#ifndef CMATRIXE_H
#define CMATRIXE_H
#include "arcomp.h"
#include "matprod.h"
template<class T>
class ComplexMatrixE: public MatrixWithProduct<arcomplex<T> > {
private:
arcomplex<T> rho;
public:
void MultMv(arcomplex<T>* v, arcomplex<T>* w);
// Matrix vector multiplication w <- M*v.
ComplexMatrixE(int nx, arcomplex<T> rhop);
// Constructor
}; // ComplexMatrixE.
template<class T>
void ComplexMatrixE<T>::MultMv(arcomplex<T>* v, arcomplex<T>* w)
{
int j;
arcomplex<T> dd, dl, du, s, h;
const arcomplex<T> one( 1.0, 0.0);
const arcomplex<T> two( 2.0, 0.0);
h = one/arcomplex<T>((this->ncols()+1),0.0);
s = rho/two;
dd = two/h;
dl = -one/h - s;
du = -one/h + s;
w[0] = dd*v[0] + du*v[1];
for (j=1; j<this->ncols()-1; j++) {
w[j] = dl*v[j-1] + dd*v[j] + du*v[j+1];
}
w[this->ncols()-1] = dl*v[this->ncols()-2] + dd*v[this->ncols()-1];
} // MultMv.
template<class T>
ComplexMatrixE<T>::
ComplexMatrixE(int nx, arcomplex<T> rhop): MatrixWithProduct<arcomplex<T> >(nx)
{
rho = rhop;
} // Constructor
#endif // CMATRIXE_H
|