53 int n=coeff_.dimension(0);
73 int n1=coeff_.dimension(0);
74 int n2=coeff_.dimension(1);
83 n2=coeff_.dimension(1);
87 sum+=coeff_(i,j++)*xj*xi;
105 int n1=coeff_.dimension(0);
106 int n2=coeff_.dimension(1);
107 int n3=coeff_.dimension(2);
118 n2=coeff_.dimension(1);
123 n3=coeff_.dimension(2);
127 sum+=coeff_(i,j,k++)*xk*xj*xi;
149 int n1=coeff_.dimension(0);
150 int n2=coeff_.dimension(1);
151 int n3=coeff_.dimension(2);
152 int n4=coeff_.dimension(3);
165 n2=coeff_.dimension(1);
170 n3=coeff_.dimension(2);
175 n4=coeff_.dimension(3);
179 sum+=coeff_(i,j,k,l++)*xl*xk*xj*xi;
Class defining operators and methods for all reading operation in an input flow (file,...
Base class for TRUST objects (Objet_U).
virtual Entree & readOn(Entree &)
Reads an Objet_U from an input stream. Virtual method to override.
virtual Sortie & printOn(Sortie &) const
Writes the object to an output stream. Virtual method to override.
Polynomial in n variables, n <= 4. Coefficients are stored using a DoubleTab.
void derive(int=0)
Not implemented. Does nothing.
Polynome(int n1)
Constructs a polynomial in one variable 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.
Polynome & operator-=(const Polynome &)
Not implemented. Does nothing. Returns *this.
Base class for output streams.