1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
function A=ref_ambiguityfunction(f, g)
%-*- texinfo -*-
%@deftypefn {Function} ref_ambiguityfunction
%@verbatim
%REF_AMBIGUITYFUNCTION Reference ambiguity function
% Usage: A=ref_ambiguityfunction(f)
% A=ref_ambiguityfunction(f,g)
%
% REF_AMBIGUITYFUNCTION(f) computes the ambiguity function of f.
% REF_AMBIGUITYFUNCTION(f,g) computes the cross-ambiguity function of f and g.
%@end verbatim
%@strong{Url}: @url{http://ltfat.github.io/doc/reference/ref_ambiguityfunction.html}
%@end deftypefn
% Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
% This file is part of LTFAT version 2.2.0
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
% AUTHOR: Jordy van Velthoven
if ~all(length(f)==length(g))
error('%s: f and g must have the same length.', upper(mfilename));
end;
L = length(f);
H = floor(L/2);
R = zeros(L,L);
A = zeros(L,L);
% Compute the analytic representation of f
if (nargin == 1)
if isreal(f)
z = fft(f);
z(2:L-H) = 2*z(2:L-H);
z(H+2:L) = 0;
z1 = ifft(z);
z2 = z1;
else
z1 = f;
z2 = z1;
end
elseif (nargin == 2)
if isreal(f) || isreal(g)
z1 = fft(f);
z1(2:L-H) = 2*z1(2:L-H);
z1(H+2:L) = 0;
z1 = ifft(z1);
z2 = fft(g);
z2(2:L-H) = 2*z2(2:L-H);
z2(H+2:L) = 0;
z2 = ifft(z2);
else
z1 = f;
z2 = g;
end
end
% Compute instantaneous autocorrelation matrix R
for l = 0 : L-1;
for m = -min([L-l, l, round(L/2)-1]) : min([L-l, l, round(L/2)-1]);
R(mod(L+m,L)+1, l+1) = z1(mod(l+m, L)+1).*conj(z2(mod(l-m, L)+1));
end
end
% Compute ambiguity function A
for hh=0:L-1
for ii=0:L-1
for jj = 0:L-1
A(hh+1, ii+1) = A(hh+1, ii+1) + R(jj+1, ii+1) .* exp(-2*pi*i*hh*jj/L);
end
end
end
A = fftshift(fft2(A));
|