polynoxy.hxx

来自「不错的国外的有限元程序代码,附带详细的manual,可以节省很多的底层工作.」· HXX 代码 · 共 35 行

HXX
35
字号
//   ***************************
//   *** CLASS POLYNOMIAL XY ***
//   ***************************

 
#include "polyno.hxx"


class PolynomialXY : public Polynomial
/*
   This class implements a polynomial with two variables X and Y.
 DESCRIPTION :
   The coefficients a_i of a polynomial are stored in the following sequence:
				   2                2       3
   p(X,Y) = a1 + a2 X + a3 Y + a4 X  + a5 X Y + a6 Y  + a7 X  + ...
 REMARK :
   The degree of such polynomial is temporarily limited to 1 ; it can be
   easily increased whenever required.
*/
{
   public :
      PolynomialXY (int) ;                 // constructor

      double  evaluatedAt (FloatArray*) ;
      void    printYourself () ;
} ;








⌨️ 快捷键说明

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