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

📄 lobatto.h

📁 The Spectral Toolkit is a C++ spectral transform library written by Rodney James and Chuck Panaccion
💻 H
字号:
//// spectral toolkit // copyright (c) 2005 university corporation for atmospheric research// licensed under the gnu general public license//#ifndef __lobatto__#define __lobatto__#include "gauss.h"namespace spectral{  /// Gauss-Lobatto quadrature class.  Based on method in  /// Canuto, Claudio, et. al., <I>Spectral Methods in Fluid Dynamics</I>, Springer-Verlag, 1988.  class lobatto : public gauss  {  public:    lobatto(int n);    ~lobatto();  private:    real *jpx;    real *djpx;    void jacobi(int nox,real alpha,real beta,real x,real *px,real *dpx);  };}#endif// Local Variables:// mode:C++// End:

⌨️ 快捷键说明

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