This repository includes MATLAB functions to perform interpolation of a discrete signal. Built-in function mkpp
is used to construct a piecewise polynomial. Included methods are:
shlinear.m
— shifted linear interpolation (Blu et al., 2004).bspline.m
— cubic B-spline interpolation (Unser, 1999).cspline.m
— causal cubic spline interpolation in (Petrinovic, 2008) formulation.cspline2.m
— causal cubic spline interpolation in (Meinsma et al., 2012) formulation.moms.m
— cubic MOMS interpolation (Blu et al., 2004).
All of the functions operate on the whole data vector. Even though most of the methods are causal, provided functions are designed for evaluation of interpolation filters rather then for real-time implementation.
Overview of these interpolation kernels is provided in Chapter 2 of my MSc thesis.