Cross correlation coefficient in azimuth direction
이전 댓글 표시
For Doppler centroid estimation, I'm trying to implement cross correlation coefficient and phase of cross correlation coefficient, but facing problem in that.
please guide for these two equations.

t_az = [-0.05, 0.05]; % azimuth time (zeta)
A = [1,0.5*1j];
PRF = 1500;
F_dc = 100;
t = -0.2: 1/PRF: 0.2; % range time (tau)
B = 300; %HZ
% X = sinc(B*t);
s = zeros(1, length(t));
for i = 1:length(t_az)
s = s+ A(i)*sinc(B*(t-t_az(i))).*exp(1j*2*pi*F_dc*(t-t_az(i)));
end
%%
sigma = 0.01;
N = sigma/sqrt(2)*(randn(1,length(s))+1j*randn(1,length(s))); % Noise
s = s+N; %signal plus noise
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Detection, Range and Doppler Estimation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!