+++ title = "Interpolation" author = ["Dehaeze Thomas"] draft = false +++ Tags : ## Band limited interpolation {#band-limited-interpolation} ```matlab rng default ``` ```matlab t = 1:10; % Time Vector [s] x = randn(size(t))'; % Sampled data [V] ts = linspace(-5,15,600); % New time vector [s] [Ts,T] = ndgrid(ts,t); y = sinc(Ts - T)*x; ``` {{< figure src="/ox-hugo/interpolation_perfect_example.png" caption="Figure 1: Sampled and interpolated signals" >}} ## Bibliography {#bibliography}