Class UnivariatePeriodicInterpolator

java.lang.Object
org.hipparchus.analysis.interpolation.UnivariatePeriodicInterpolator
All Implemented Interfaces:
UnivariateInterpolator

public class UnivariatePeriodicInterpolator extends Object implements UnivariateInterpolator
Adapter for classes implementing the UnivariateInterpolator interface. The data to be interpolated is assumed to be periodic. Thus values that are outside of the range can be passed to the interpolation function: They will be wrapped into the initial range before being passed to the class that actually computes the interpolation.
  • Field Details

    • DEFAULT_EXTEND

      public static final int DEFAULT_EXTEND
      Default number of extension points of the samples array.
      See Also:
  • Constructor Details

    • UnivariatePeriodicInterpolator

      public UnivariatePeriodicInterpolator(UnivariateInterpolator interpolator, double period, int extend)
      Builds an interpolator.
      Parameters:
      interpolator - Interpolator.
      period - Period.
      extend - Number of points to be appended at the beginning and end of the sample arrays in order to avoid interpolation failure at the (periodic) boundaries of the orginal interval. The value is the number of sample points which the original interpolator needs on each side of the interpolated point.
    • UnivariatePeriodicInterpolator

      public UnivariatePeriodicInterpolator(UnivariateInterpolator interpolator, double period)
      Builds an interpolator. Uses DEFAULT_EXTEND as the number of extension points on each side of the original abscissae range.
      Parameters:
      interpolator - Interpolator.
      period - Period.
  • Method Details