update() публичный Метод

public update ( ) : void
Результат void
Пример #1
0
 /*! \pre the \f$ x \f$ values must be sorted. */
 public ForwardFlatInterpolation(List <double> xBegin, int size, List <double> yBegin)
 {
     impl_ = new ForwardFlatInterpolationImpl(xBegin, size, yBegin);
     impl_.update();
 }
Пример #2
0
 /*! \pre the \f$ x \f$ values must be sorted. */
 public ForwardFlatInterpolation(List<double> xBegin, int size, List<double> yBegin)
 {
     impl_ = new ForwardFlatInterpolationImpl(xBegin, size, yBegin);
     impl_.update();
 }