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

📄 polynoxy.hxx

📁 不错的国外的有限元程序代码,附带详细的manual,可以节省很多的底层工作.
💻 HXX
字号:
//   ***************************
//   *** 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -