⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmatrixf.h

📁 ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems.
💻 H
字号:
/*   ARPACK++ v1.0 8/1/1997   c++ interface to ARPACK code.   MODULE CMatrixF.h   Class template for the symmetric tridiagonal matrix with 4.0 on   the main diagonal, and 1.0 on the off-diagonals.   ARPACK Authors      Richard Lehoucq      Danny Sorensen      Chao Yang      Dept. of Computational & Applied Mathematics      Rice University      Houston, Texas*/#ifndef CMATRIXF_H#define CMATRIXF_H#include "arcomp.h"#include "matprod.h"#include "blas1c.h"#include "lapackc.h"template<class T>class ComplexMatrixF: public MatrixWithProduct<arcomplex<T> > { public:  void MultMv(arcomplex<T> *v, arcomplex<T> *w);  // Matrix vector multiplication w <- M*v.  ComplexMatrixF(int nx): MatrixWithProduct<arcomplex<T> >(nx) { }  // Constructor}; // ComplexMatrixF.template<class T>void ComplexMatrixF<T>::MultMv(arcomplex<T> *v, arcomplex<T> *w){  int          j;  arcomplex<T> h;  const arcomplex<T> one(1.0, 0.0);  const arcomplex<T> four(4.0, 0.0);  w[0] = four*v[0] + one*v[1];  for (j=1; j<ncols()-1; j++) {    w[j] = one*v[j-1] + four*v[j] + one*v[j+1];  }  w[ncols()-1] = one*v[ncols()-2] + four*v[ncols()-1];  h = one/arcomplex<T>((ncols()+1),0.0);  scal(ncols(), h, w, 1);} // MultMv.#endif // CMATRIXF_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -