Mercurial > hg > ddm
view fourier_kernel.m @ 2:e2b116f3b69b
fixed reallocate and pinv_2_fast to work on Octave
added short example very quickly, might not be working properly
author | smusevic |
---|---|
date | Thu, 25 Jul 2013 13:07:07 +0100 |
parents | a4a7e3405062 |
children |
line wrap: on
line source
function [fk fk_ders] = fourier_kernel(frqs, N,fs) R = size(frqs,2); t = [-(N-1)/2:(N-1)/2]'/fs; t_mat = repmat(t,[1,R]); frq_mat = repmat(frqs,[N,1]); fk = exp(1j .* t_mat .* frq_mat); fk_ders = 1j * fk .* frq_mat; end