MATLAB Function Reference | ![]() ![]() |
Piecewise Cubic Hermite Interpolating Polynomial (PCHIP)
Syntax
yi = pchip(x,y,xi) pp = pchip(x,y)
Description
yi = pchip(x,y,xi)
returns vector yi
containing elements corresponding to the elements of xi
and determined by piecewise cubic interpolation within vectors x
and y
. The vector x
specifies the points at which the data y
is given. If y
is a matrix, then the interpolation is performed for each column of y
and yi
is length(xi)
-by-size(y,2)
.
pp = pchip(x,y)
returns a piecewise polynomial structure for use by ppval
. x
can be a row or column vector. y
is a row or column vector of the same length as x
, or a matrix with length(x)
columns.
pchip
finds values of an underlying interpolating function at intermediate points.
satisfies:
spline
is smoother, i.e. spline
is more accurate if the data are values of a smooth function.pchip
has no overshoots and less oscillation if the data are not smooth.pchip
is less expensive to set up.Examples
x = -3:3; y = [-1 -1 -1 0 1 1 1]; t = -3:.01:3; p = pchip(x,y,t); s = spline(x,y,t); plot(x,y,'o',t,p,'-',t,s,'-.') legend({'data','pchip','spline'})
See Also
References
[1] Fritsch, F. N. and R. E. Carlson, "Monotone Piecewise Cubic Interpolation," SIAM J. Numerical Analysis, Vol. 17, 1980, pp.238-246.
[2] Kahaner, David, Cleve Moler, Stephen Nash, Numerical Methods and Software, Prentice Hall, 1988.
![]() | pcg | pcode | ![]() |