update() public method

public update ( ) : void
return void
コード例 #1
0
 /*! \pre the \f$ x \f$ values must be sorted. */
 public LinearInterpolation(List <double> xBegin, int size, List <double> yBegin)
 {
     impl_ = new LinearInterpolationImpl(xBegin, size, yBegin);
     impl_.update();
 }
コード例 #2
0
 /*! \pre the \f$ x \f$ values must be sorted. */
 public LinearInterpolation(List<double> xBegin, int size, List<double> yBegin)
 {
     impl_ = new LinearInterpolationImpl(xBegin, size, yBegin);
     impl_.update();
 }