lobattoquadrature.h

来自「利用C」· C头文件 代码 · 共 42 行

H
42
字号
// Copyright (C) 2003-2005 Anders Logg.// Licensed under the GNU LGPL Version 2.1.//// First added:  2003-06-03// Last changed: 2005-12-09#ifndef __LOBATTO_QUADRATURE_H#define __LOBATTO_QUADRATURE_H#include "GaussianQuadrature.h"namespace dolfin{  /// Lobatto (Gauss-Lobatto) quadrature on the interval [-1,1].  /// The n quadrature points are given by the end-points -1 and 1,  /// and the zeros of P{n-1}'(x), where P{n-1}(x) is the (n-1):th  /// Legendre polynomial.  ///  /// The quadrature points are computed using Newton's method, and  /// the quadrature weights are computed by solving a linear system  /// determined by the condition that Lobatto quadrature with n points  /// should be exact for polynomials of degree 2n-3.  class LobattoQuadrature : public GaussianQuadrature  {  public:        LobattoQuadrature(unsigned int n);    void disp() const;  private:    void computePoints();      };  }#endif

⌨️ 快捷键说明

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