Interpolieren
Interpolieren (interpolation) is the process of constructing a function that exactly fits a set of known data points and is used to estimate intermediate values. Given a set of pairs (x_i, y_i) with strictly increasing x_i, interpolation yields a function f defined on the interval [x_0, x_m] such that f(x_i) = y_i for each i.
Linear interpolation uses the unique line through two adjacent points to estimate values between them. It is
Spline interpolation, especially cubic splines, fits piecewise low-degree polynomials between neighboring nodes with continuity constraints on
Interpolation versus extrapolation: interpolation estimates within the data range; extrapolation estimates outside it and is generally
Applications include data visualization, numerical analysis, computer graphics, weather and geoscience, and engineering. In practice, the