function [g]=comp_pgauss(L,w,c_t,c_f)
%COMP_PGAUSS Sampled, periodized Gaussian.
%
% Computational routine: See help on PGAUSS.
%
% center=0 gives whole-point centered function.
% center=.5 gives half-point centered function.
%
% Does not check input parameters, do not call this
% function directly.
% AUTHOR : Peter L. Søndergaard.
% AUTHOR : Peter L. Søndergaard.
% TESTING: OK
% REFERENCE: OK
% c_t - time centering
% c_f - frequency centering
% Input data type cannot be determined
g=zeros(L,1);
if L==0
return;
end;
sqrtl=sqrt(L);
safe=4;
% Keep the delay in a sane interval
c_t=rem(c_t,L);
% Outside the interval [-safe,safe] then exp(-pi*x.^2) is numerically zero.
nk=ceil(safe/sqrt(L/sqrt(w)));
lr=(0:L-1).'+c_t;
for k=-nk:nk
g=g+exp(-pi*(lr/sqrtl-k*sqrtl).^2/w+2*pi*i*c_f*(lr/L-k));
end;
% Normalize it exactly.
g=g/norm(g);
% This normalization is only approximate, it works for the continous case
% but not for the discrete
%g=g*(w*L/2)^(-.25);