Higher Order Delay Line Interpolation
Lagrange Interpolation
Matlab Code for Lagrange InterpolationSearch Physical Audio Signal Processing
Would you like to be notified by email when Julius Orion Smith III publishes a new entry into his blog?
function h = lagrange( N, delay )
% h = lagrange( N, delay )
n = 0:N;
h = ones(1,N+1);
for k = 0:N
index = find(n ~= k);
h(index) = h(index) * (delay-k)./ (n(index)-k);
end
