Interface OnlineInterpolator
-
- All Known Implementing Classes:
LinearInterpolator,NevilleTable
public interface OnlineInterpolatorAn online interpolator allows dynamically adding more points for interpolation. Note: the function is no longer immutable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddData(OrderedPairs f)Add more points for interpolation.
-
-
-
Method Detail
-
addData
void addData(OrderedPairs f)
Add more points for interpolation.- Parameters:
f- the points to be interpolated
-
-