Class Interpolator.Linear<F extends Field<F>>

    • Constructor Summary

      Constructors 
      Constructor Description
      Linear()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      F interpolate​(F point, java.util.SortedMap<F,​F> pointValues)
      Estimates the value at the specified point.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • interpolate

        public F interpolate​(F point,
                             java.util.SortedMap<F,​F> pointValues)
        Description copied from interface: Interpolator
        Estimates the value at the specified point.
        Specified by:
        interpolate in interface Interpolator<F extends Field<F>,​F extends Field<F>>
        Parameters:
        point - the point for which the value is estimated.
        pointValues - the point-value entries.
        Returns:
        the estimated value at the specified point.