Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 1.24 KB

README.md

File metadata and controls

12 lines (9 loc) · 1.24 KB

Interpolation Filters for MATLAB

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:

  1. shlinear.m — shifted linear interpolation (Blu et al., 2004).
  2. bspline.m — cubic B-spline interpolation (Unser, 1999).
  3. cspline.m — causal cubic spline interpolation in (Petrinovic, 2008) formulation.
  4. cspline2.m — causal cubic spline interpolation in (Meinsma et al., 2012) formulation.
  5. 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.