Spline Toolbox™ Previous page   Next Page 
csape
 Provide feedback about this page

Cubic spline interpolation with end conditions

Syntax

Description

pp = csape(x,y) is the ppform of a cubic spline s with knot sequence x that satisfies s(x(j)) = y(:,j) for all j, as well as an additional end condition at the ends (meaning the leftmost and at the rightmost data site), namely the default condition listed below. The data values y(:,j) may be scalars, vectors, matrices, even ND-arrays. Data values at the same data site are averaged.

pp = csape(x,y,conds) lets you choose the end conditions to be used, from a rather large and varied catalog, by proper choice of conds. If needed, you supply the corresponding end condition values as additional data values, with the first (last) data value taken as the end condition value at the left (right) end. In other words, in that case, s(x(j)) matches y(:,j+1) for all j, and the variable endcondvals used in the detailed description below is set to y(:,[1 end]). For some choices of conds, these end condition values need not be present and/or are ignored when present.

conds may be a string whose first character matches one of the following: 'complete' or 'clamped', 'not-a-knot', 'periodic', 'second', 'variational', with the following meanings.

'complete' or 'clamped'
Match endslopes (as given, with default as under "default'').
'not-a-knot'
Make second and second-last sites inactive knots (ignoring end condition values if given).
'periodic'
Match first and second derivatives at left end with those at right end.
'second'
Match end second derivatives (as given, with default [0 0], i.e., as in 'variational').
'variational'

Set end second derivatives equal to zero (ignoring end condition values if given).

default
Match endslopes to the slope of the cubic that matches the first four data at the respective end (i.e., Lagrange).

By giving conds as a 1-by-2 matrix instead, it is possible to specify different conditions at the two ends. Explicitly, the th derivative, , is given the value endcondvals(:,) at the left ( is 1) respectively right ( is 2) end in case is . There are default values for conds and/or endcondvals.  

Available conditions are:   

clamped
= endcondvals(:,j)
if conds(j) == 1
curved
= endcondvals(:,j)
if conds(j) == 2
Lagrange

default
periodic

if conds == [0  0]
variational

if conds(j) == 2 & endcondvals(:,j) == 0

Here, is ( is ), i.e., the left (right) end, in case j is 1 (j is 2), and (in the Lagrange condition) is the cubic polynomial that interpolates to the given data at and the three sites nearest .

If conds(j) is not specified or is different from 0, 1, or 2, then it is taken to be 1 and the corresponding endcondvals(:,j) is taken to be the corresponding default value.

The default value for endcondvals(:,j) is the derivative of the cubic interpolant at the nearest four sites in case conds(j) is 1, and is 0 otherwise.

It is also possible to handle gridded data, by having x be a cell array containing univariate meshes and, correspondingly, having y be an -dimensional array (or an -dimensional array if the function is to be -valued). Correspondingly, conds is a cell array with entries, and end condition values may be correspondingly supplied in each of the m variables. This, as the last example below, of bicubic spline interpolation, makes clear, may require you to supply end conditions for end conditions.

This command calls on a much expanded version of the Fortran routine CUBSPL in PGS.

Examples

csape(x,y) provides the cubic spline interpolant with the Lagrange end conditions, while csape(x,y,[2 2]) provides the variational, or natural cubic spline interpolant, as does csape(x,y,'v'). csape([-1 1],[3 -1 1 6],[1 2]) provides the cubic polynomial for which , , , , i.e., . Finally, csape([-1 1],[-1 1]) provides the straight line p for which p(±1) = ±1, i.e., .

End conditions other than the ones listed earlier can be handled along the following lines. Suppose that we want to enforce the condition

for given scalars , , and , and with equal to x(1). Then one could compute the cubic spline interpolant to the given data using the default end condition as well as the cubic spline interpolant to zero data and some (nontrivial) end condition at , and then obtain the desired interpolant in the form

Here are the (not inconsiderable) details (in which the first polynomial piece of and is pulled out to avoid differentiating all of and ):

As a multivariate vector-valued example, here is a sphere, done as a parametric bicubic spline, 3D-valued, using prescribed slopes in one direction and periodic end conditions in the other:

The lines involving fnval and surf could have been replaced by the simple command: fnplt(sph). Note that v is a 3-dimensional array, with v(:,i+1,j) the 3-vector to be matched at (x(i),y(j)), i=1:5, j=1:5. Note further that, in accordance with conds{1} being 'clamped', size(v,2) is 7 (and not 5), with the first and last entry of v(r,:,j) specifying the end slopes to be matched.

Here is a bivariate example that shows the need for supplying end conditions of end conditions when supplying end conditions in both variables. We reproduce the bicubic polynomial g(x,y) = x^3y^3 by complete bicubic interpolation. We derive the needed data, including end condition values, directly from g in order to make it easier for you to see just how the end condition values must be placed. We also check the result.

Algorithm

The relevant tridiagonal linear system is constructed and solved using the sparse matrix capabilities of MATLAB®.

See Also

csapi, spapi, spline

Cautionary Note

csape recognizes that you supplied explicit end condition values by the fact that you supplied exactly two more data values than data sites. In particular, even when using different end conditions at the two ends, if you wish to supply an end condition value at one end, you must also supply one for the other end.


 Provide feedback about this page 

Previous page chbpnt csapi Next page

 © 1984-2008- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS