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

📄 nmatrixd.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 NMatrixD.h   Class template for the mass matrix formed by using   piecewise linear elements on [0,1].   ARPACK Authors      Richard Lehoucq      Danny Sorensen      Chao Yang      Dept. of Computational & Applied Mathematics      Rice University      Houston, Texas*/#ifndef NMATRIXD_H#define NMATRIXD_H#include "matprod.h"#include "blas1c.h"#include "lapackc.h"template<class T>class NonSymMatrixD: public MatrixWithProduct<T> { private:  T    *Md, *Me;  int  decsize;  void FactorDataDeallocate();  // Eliminates of the data structure used on matrix factorization. public:  void FactorM();  // Factors M.   void MultMv(T* v, T* w);  // Computes w <- M*v.  void SolveM(T* v);  // Solves M.w = v. v is overwritten with vector w.  NonSymMatrixD(int nx);  // Constructor.  virtual ~NonSymMatrixD();  // Destructor.}; // NonSymMatrixD.template<class T>inline void NonSymMatrixD<T>::FactorDataDeallocate(){  delete[] Md;  delete[] Me;} // FactorDataDeallocatetemplate<class T>void NonSymMatrixD<T>::FactorM()/*  Factors M, the mass matrix formed by using  piecewise linear elements on [0, 1].*/{  int  i, ierr;  T    h;  const T one  = 1.0;  const T four = 4.0;  if (decsize != ncols()) {    decsize = ncols();    FactorDataDeallocate();    Md   = new T[ncols()];    Me   = new T[ncols()];  }  h  = one/T(ncols()+1);  for (i=0; i<ncols()-1; i++) {    Md[i] = four*h;    Me[i] = h;  }  Md[ncols()-1] = four*h;  pttrf(ncols(), Md, Me, ierr);} // FactorM.template<class T>void NonSymMatrixD<T>::MultMv(T* v, T* w){  int  j;  T    h;  const T one  = 1.0;  const T four = 4.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/T(ncols()+1);  scal(ncols(), h, w, 1);} // MultMv.template<class T>inline void NonSymMatrixD<T>::SolveM(T* v){  int  ierr;  pttrs(ncols(), 1, Md, Me, v, ncols(), ierr);} // SolveM.template<class T>inline NonSymMatrixD<T>::NonSymMatrixD(int nx): MatrixWithProduct<T>(nx){  decsize = 0;  Md      = 0;  Me      = 0;} // Constructor.template<class T>inline NonSymMatrixD<T>::~NonSymMatrixD(){  FactorDataDeallocate();} // Destructor.#endif // NMATRIXD_H

⌨️ 快捷键说明

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