Multivariate interpolation

From The Right Wiki
(Redirected from Spatial interpolation)
Jump to navigationJump to search

In numerical analysis, multivariate interpolation is interpolation on functions of more than one variable[1] (multivariate functions); when the variates are spatial coordinates, it is also known as spatial interpolation. The function to be interpolated is known at given points (xi,yi,zi,) and the interpolation problem consists of yielding values at arbitrary points (x,y,z,). Multivariate interpolation is particularly important in geostatistics, where it is used to create a digital elevation model from a set of points on the Earth's surface (for example, spot heights in a topographic survey or depths in a hydrographic survey).

Regular grid

File:Comparison of 1D and 2D interpolation.svg
Comparison of some 1- and 2-dimensional interpolations.
Black and red/yellow/green/blue dots correspond to the interpolated point and neighbouring samples, respectively.
Their heights above the ground correspond to their values.

For function values known on a regular grid (having predetermined, not necessarily uniform, spacing), the following methods are available.

Any dimension

2 dimensions

Bitmap resampling is the application of 2D multivariate interpolation in image processing. Three of the methods applied on the same dataset, from 25 values located at the black dots. The colours represent the interpolated values.

See also Padua points, for polynomial interpolation in two variables.

3 dimensions

See also bitmap resampling.

Tensor product splines for N dimensions

Catmull-Rom splines can be easily generalized to any number of dimensions. The cubic Hermite spline article will remind you that CINTx(f1,f0,f1,f2)=b(x)(f1f0f1f2) for some 4-vector b(x) which is a function of x alone, where fj is the value at j of the function to be interpolated. Rewrite this approximation as

CR(x)=i=12fibi(x)

This formula can be directly generalized to N dimensions:[2]

CR(x1,,xN)=i1,,iN=12fi1iNj=1Nbij(xj)

Note that similar generalizations can be made for other types of spline interpolations, including Hermite splines. In regards to efficiency, the general formula can in fact be computed as a composition of successive CINT-type operations for any type of tensor product splines, as explained in the tricubic interpolation article. However, the fact remains that if there are n terms in the 1-dimensional CR-like summation, then there will be nN terms in the N-dimensional summation.

Irregular grid (scattered data)

Schemes defined for scattered data on an irregular grid are more general. They should all work on a regular grid, typically reducing to another known method.

Gridding is the process of converting irregularly spaced data to a regular grid (gridded data).

See also

Notes

  1. Jetter, Kurt; Buhmann, Martin D.; Haussmann, Werner; Schaback, Robert; and Stöckler, Joachim: Topics in Multivariate Approximation and Interpolation, Elsevier, ISBN 0-444-51844-4 (2006)
  2. Two hierarchies of spline interpolations. Practical algorithms for multivariate higher order splines

External links