Trigonometric interpolation


In mathematics, trigonometric interpolation is interpolation with trigonometric polynomials. Interpolation is the process of finding a function which goes through some given data points. For trigonometric interpolation, this function has to be a trigonometric polynomial, that is, a sum of sines and cosines of given periods. This form is especially suited for interpolation of periodic functions.
An important special case is when the given data points are equally spaced, in which case the solution is given by the discrete Fourier transform.

Formulation of the interpolation problem

A trigonometric polynomial of degree K has the form
This expression contains 2K + 1 coefficients, a0, a1, … aK, b1, …, bK, and we wish to compute those coefficients so that the function passes through N points:
Since the trigonometric polynomial is periodic with period 2π, the N points can be distributed and ordered in one period as
The interpolation problem is now to find coefficients such that the trigonometric polynomial p satisfies the interpolation conditions.

Formulation in the complex plane

The problem becomes more natural if we formulate it in the complex plane. We can rewrite the formula for a trigonometric polynomial as
where i is the imaginary unit. If we set z = eix, then this becomes
with
This reduces the problem of trigonometric interpolation to that of polynomial interpolation on the unit circle. Existence and uniqueness for trigonometric interpolation now follows immediately from the corresponding results for polynomial interpolation.
For more information on formulation of trigonometric interpolating polynomials in the complex plane, see p. 135 of .

Solution of the problem

Under the above conditions, there exists a solution to the problem for any given set of data points as long as N, the number of data points, is not larger than the number of coefficients in the polynomial, i.e., N ≤ 2K+1 . Moreover, the interpolating polynomial is unique if and only if the number of adjustable coefficients is equal to the number of data points, i.e., N = 2K + 1. In the remainder of this article, we will assume this condition to hold true.

Odd number of points

If the number of points N is odd, say N=2K+1, applying the Lagrange formula for polynomial interpolation to the polynomial formulation in the complex plane yields that the solution can be written in the form
where
The factor in this formula compensates for the fact that the complex plane formulation contains also negative powers of and is therefore not a polynomial expression in. The correctness of this expression can easily be verified by observing that and that is a linear combination of the right powers of.
Upon using the identity
the coefficient can be written in the form

Even number of points

If the number of points N is even, say N=2K, applying the Lagrange formula for polynomial interpolation to the polynomial formulation in the complex plane yields that the solution can be written in the form
where
Here, the constants can be chosen freely. This is caused by the fact that the interpolating function contains an odd number of unknown constants. A common choice is to require that the highest frequency is of the form a constant times, i.e. the term vanishes, but in general the phase of the highest frequency can be chosen to be. To get an expression for, we obtain by using that can be written on the form
This yields
and
Note that care must be taken in order to avoid infinities caused by zeros in the denominators.

Equidistant nodes

Further simplification of the problem is possible if nodes are equidistant, i.e.
see Zygmund for more details.

Odd number of points

Further simplification by using would be an obvious approach, but is obviously involved. A much simpler approach is to consider the Dirichlet kernel
where is odd. It can easily be seen that is a linear combination of the right powers of and satisfies
Since these two properties uniquely define the coefficients in, it follows that
Here, the sinc-function prevents any singularities and is defined by

Even number of points

For even, we define the Dirichlet kernel as
Again, it can easily be seen that is a linear combination of the right powers of, does not contain the term and satisfies
Using these properties, it follows that the coefficients in are given by
Note that does not contain the as well. Finally, note that the function vanishes at all the points. Multiples of this term can, therefore, always be added, but it is commonly left out.

Implementation

A MATLAB implementation of the above can be found and is given by:

function P = triginterp
% TRIGINTERP Trigonometric interpolation.
% Input:
% xi evaluation points for the interpolant
% x equispaced interpolation nodes
% y interpolation values
% Output:
% P values of the trigonometric interpolant
N = length;
% Adjust the spacing of the given independent variable.
h = 2/N;
scale = -x) / h;
x = x/scale; xi = xi/scale;
% Evaluate interpolant.
P = zeros;
for k = 1:N
P = P + y*trigcardinal;
end
function tau = trigcardinal
ws = warning;
% Form is different for even and odd N.
if rem1 % odd
tau = sin./ ;
else % even
tau = sin./ ;
end
warning
tau = 1; % fix value at x=0

Relation with the discrete Fourier transform

The special case in which the points xn are equally spaced is especially important. In this case, we have
The transformation that maps the data points yn to the coefficients ak, bk is obtained from the discrete Fourier transform of order N.
The case of the cosine-only interpolation for equally spaced points, corresponding to a trigonometric interpolation when the points have even symmetry, was treated by Alexis Clairaut in 1754. In this case the solution is equivalent to a discrete cosine transform. The sine-only expansion for equally spaced points, corresponding to odd symmetry, was solved by Joseph Louis Lagrange in 1762, for which the solution is a discrete sine transform. The full cosine and sine interpolating polynomial, which gives rise to the DFT, was solved by Carl Friedrich Gauss in unpublished work around 1805, at which point he also derived a fast Fourier transform algorithm to evaluate it rapidly. Clairaut, Lagrange, and Gauss were all concerned with studying the problem of inferring the orbit of planets, asteroids, etc., from a finite set of observation points; since the orbits are periodic, a trigonometric interpolation was a natural choice. See also Heideman et al..

Applications in numerical computing

, a fully integrated software system written in MATLAB for computing with functions, uses trigonometric interpolation and Fourier expansions for computing with periodic functions. Many algorithms related to trigonometric interpolation are readily available in Chebfun; several examples are available .