📄 polynoxy.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 + -