16#ifndef Polynome_included
17#define Polynome_included
32 inline Polynome(
int n1,
int n2,
int n3);
33 inline Polynome(
int n1,
int n2,
int n3,
int n4);
35 inline int degre(
int )
const;
36 inline double&
coeff(
int n1);
37 inline double&
coeff(
int n1,
int n2);
38 inline double&
coeff(
int n1,
int n2,
int n3);
39 inline double&
coeff(
int n1,
int n2,
int n3,
int n4);
40 inline double coeff(
int n1)
const;
41 inline double coeff(
int n1,
int n2)
const;
42 inline double coeff(
int n1,
int n2,
int n3)
const;
43 inline double coeff(
int n1,
int n2,
int n3,
int n4)
const;
46 double operator()(
double x1,
double x2,
double x3)
const;
47 double operator()(
double x1,
double x2,
double x3,
double x4)
const;
52 double derive(
double x1)
const;
53 double derive(
double x1,
double x2)
const;
54 double derive(
double x1,
double x2,
double x3)
const;
55 double derive(
double x1,
double x2,
double x3,
double x4)
const;
57 double integre(
double x1)
const;
58 double integre(
double x1,
double x2)
const;
59 double integre(
double x1,
double x2,
double x3)
const;
60 double integre(
double x1,
double x2,
double x3,
double x4)
const;
117 return coeff_.dimension(i)-1;
138 return coeff_(n1, n2);
150 return coeff_(n1, n2, n3);
163 return coeff_(n1, n2, n3, n4);
184 return coeff_(n1, n2);
196 return coeff_(n1, n2, n3);
209 return coeff_(n1, n2, n3, n4);
Objet_U()
Default constructor: assigns a unique identifier to the object (object_id_) and registers the object ...
void derive(int=0)
Not implemented. Does nothing.
Polynome(int n1)
Constructs a polynomial in one variable of degree n1.
double & coeff(int n1)
Returns the coefficient of the term of degree n1.
Polynome & operator/=(double)
Not implemented. Does nothing. Returns *this.
Polynome & operator+=(const Polynome &)
Not implemented. Does nothing. Returns *this.
Polynome & operator*=(const Polynome &)
Not implemented. Does nothing. Returns *this.
double operator()(double x1) const
Evaluates the polynomial at point x1.
void integre(int=0)
Not implemented. Does nothing.
int degre(int) const
Returns the degree of the polynomial with respect to the i-th variable.
Polynome & operator-=(const Polynome &)
Not implemented. Does nothing. Returns *this.