Cubic Hermite spline
From Wikipedia, the free encyclopedia
In the mathematical subfield of numerical analysis a cubic Hermite spline, named in honor of Charles Hermite, is a third-degree spline with each polynomial of the spline in Hermite form. The Hermite form consists of two control points and two control tangents for each polynomial.
For interpolation on a grid with points xk for k = 1,...,n, interpolation is performed on one subinterval (xk,xk + 1) at a time (given that tangent values are predetermined). The subinterval (xk,xk + 1) is normalized to (0,1) via t = (x − xk) / (xk + 1 − xk).
Contents |
[edit] Interpolation on a single interval
[edit] Unit interval (0,1)
On the unit interval (0,1), given a starting point p0 at t = 0 and an ending point p1 at t = 1 with starting tangent m0 at t = 0 and ending tangent m1 at t = 1, the polynomial can be defined by
where t ∈ [0, 1].
The four Hermite basis functions can be defined as
to give the polynomial as
[edit] Interpolation on (xk,xk + 1)
Interpolating x in the interval (xk,xk + 1) can now be done with the formula
with h = xk + 1 − xk and t = (x − xk) / h. Note that the tangent values have been scaled by h compared to the equation on the unit interval.
[edit] Uniqueness
The two control points and the tangents specify a third degree polynomial, that can be obtained by the procedure outlined above. Two distinct third-degree polynomials satisfying the given boundary conditions, would differ only by a third-degree polynomial which is zero and with zero derivative at two distinct points, and the only such third-degree polynomial is zero.
[edit] Interpolating a data set
A data set, for k = 1,...,n, can be interpolated by applying the above procedure on each interval, where the tangents are chosen in a sensible manner, meaning that the tangents for intervals sharing endpoints are equal. The interpolated curve then consists of piecewise cubic Hermite splines, and is globally continuously differentiable in (x1,xn).
The choice of tangents is non-unique, and there are several options available.
[edit] Finite difference
The simplest choice is the three-point difference, not requiring constant interval lengths,
for internal points k = 2,...,n − 1, and one-sided difference at the endpoints of the data set.
[edit] Cardinal spline
A cardinal spline is obtained[1] if
is used to calculate the tangents. The parameter c is a tension parameter that must be in the interval (0,1). In some sense, this can be interpreted as the "length" of the tangent. c = 1 will yield all zero tangents, and c = 0 yields a Catmull-Rom spline.
[edit] Catmull–Rom spline
For tangents chosen to be
a Catmull–Rom spline is obtained, being a special case of a cardinal spline.
The curve is named after Edwin Catmull and Raphie Rom. In computer graphics, Catmull–Rom splines are frequently used to get smooth interpolated motion between key frames. For example, most camera path animations generated from discrete key-frames are handled using Catmull–Rom splines. They are popular mainly for being relatively easy to compute, guaranteeing that each key frame position will be hit exactly, and also guaranteeing that the tangents of the generated curve are continuous over multiple segments.
[edit] Kochanek–Bartels spline
A Kochanek–Bartels spline is a further generalization on how to choose the tangents given the data points , and , with three parameters possible, tension, bias and a continuity parameter.
[edit] Monotone cubic interpolation
If a cubic Hermite spline of any of the above listed types is used for interpolation of a monotonic data set, the interpolated function will not necessarily be monotonic, but monotonicity can be preserved by adjusting the tangents.
[edit] Interpolation on the unit interval without derivatives
Given p-1, p0, p1 and p2 as the values that the function should take on at -1, 0, 1 and 2, we can use the Lagrange polynomial to write
where the left-hand vector is independent of the p.
To derive this, recall the uniqueness argument, and observe that the entries in the left-hand vector are cubic polynomials which are zero at three of the sampling points and equal to +1 at the fourth.
This simplification is relevant for tricubic interpolation, where one optimization requires you to compute CINTx sixteen times with the same x and different p.
The multiple of the two matrices might have problems violating the rules of matrix multiplication
[edit] See also
- Bicubic interpolation, a generalization to two dimensions
- Hermite interpolation