Inmathematics,trigonometric interpolation isinterpolation withtrigonometric polynomials. Interpolation is the process of finding a function which goes through some givendata points. For trigonometric interpolation, this function has to be a trigonometric polynomial, that is, a sum ofsines and cosines of given periods. This form is especially suited for interpolation ofperiodic functions.
An important special case is when the given data points are equally spaced, in which case the solution is given by thediscrete Fourier transform.
A trigonometric polynomial of degreeK has the form
| 1 |
This expression contains 2K + 1 coefficients,a0,a1, …aK,b1, …,bK, and we wish to compute those coefficients so that the function passes throughN points:
Since the trigonometric polynomial is periodic with period 2π, theN points can be distributed and ordered in one period as
(Note that we donot in general require these points to be equally spaced.) The interpolation problem is now to find coefficients such that the trigonometric polynomialp satisfies the interpolation conditions.
The problem becomes more natural if we formulate it in thecomplex plane. We can rewrite the formula for a trigonometric polynomial aswherei is theimaginary unit. If we setz =eix, then this becomes
with
This reduces the problem of trigonometric interpolation to that of polynomial interpolation on theunit 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. 156 ofInterpolation using Fourier Polynomials.
Under the above conditions, there exists a solution to the problem forany given set of data points {xk,yk} as long asN, the number of data points, is not larger than the number of coefficients in the polynomial, i.e.,N ≤ 2K+1 (a solution may or may not exist ifN>2K+1 depending upon the particular set of data points). 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.
If the number of pointsN is odd, sayN=2K+1, applying theLagrange formula for polynomial interpolation to the polynomial formulation in the complex plane yields that the solution can be written in the form
| 5 |
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
| 2 |
the coefficient can be written in the form
| 4 |
If the number of pointsN is even, sayN=2K, applying theLagrange formula for polynomial interpolation to the polynomial formulation in the complex plane yields that the solution can be written in the form
| 6 |
where
| 3 |
Here, the constants can be chosen freely. This is caused by the fact that the interpolating function (1) 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 (2) that (3) 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.
Further simplification of the problem is possible if nodes are equidistant, i.e.
see Zygmund for more details.
Further simplification by using (4) would be an obvious approach, but is obviously involved. A much simpler approach is to consider theDirichlet 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 (5), it follows that
Here, thesinc-function prevents any singularities and is defined by
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 (6) 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.
AMATLAB implementation of the above can be foundhere and is given by:
functionP=triginterp(xi,x,y)% TRIGINTERP Trigonometric interpolation.% Input:% xi evaluation points for the interpolant (vector)% x equispaced interpolation nodes (vector, length N)% y interpolation values (vector, length N)% Output:% P values of the trigonometric interpolant (vector)N=length(x);% Adjust the spacing of the given independent variable.h=2/N;scale=(x(2)-x(1))/h;x=x/scale;xi=xi/scale;% Evaluate interpolant.P=zeros(size(xi));fork=1:NP=P+y(k)*trigcardinal(xi-x(k),N);endfunctiontau=trigcardinal(x,N)ws=warning('off','MATLAB:divideByZero');% Form is different for even and odd N.ifrem(N,2)==1% oddtau=sin(N*pi*x/2)./(N*sin(pi*x/2));else% eventau=sin(N*pi*x/2)./(N*tan(pi*x/2));endwarning(ws)tau(x==0)=1;% fix value at x=0
The special case in which the pointsxn are equally spaced is especially important. In this case, we have
The transformation that maps the data pointsyn to the coefficientsak,bk is obtained from thediscrete Fourier transform (DFT) of order N.
(Because of the way the problem was formulated above, we have restricted ourselves to odd numbers of points. This is not strictly necessary; for even numbers of points, one includes another cosine term corresponding to theNyquist frequency.)
The case of the cosine-only interpolation for equally spaced points, corresponding to a trigonometric interpolation when the points haveeven symmetry, was treated byAlexis Clairaut in 1754. In this case the solution is equivalent to adiscrete cosine transform. The sine-only expansion for equally spaced points, corresponding to odd symmetry, was solved byJoseph Louis Lagrange in 1762, for which the solution is adiscrete sine transform. The full cosine and sine interpolating polynomial, which gives rise to the DFT, was solved byCarl Friedrich Gauss in unpublished work around 1805, at which point he also derived afast Fourier transform algorithm to evaluate it rapidly. Clairaut, Lagrange, and Gauss were all concerned with studying the problem of inferring theorbit ofplanets,asteroids, etc., from a finite set of observation points; since the orbits are periodic, a trigonometric interpolation was a natural choice. See also Heidemanet al. (1984).
Chebfun, 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 inChebfun; several examples are availablehere.