名词解释

  • integration 累积
  • coherent 相干 相参
  • concoherent 

 

雷达的单个脉冲能量有限,通常不采用单个接收脉冲来进行检测判决,在判决前,我们需要对多个脉冲进行处理,以提高信噪比,这种基于多个脉冲的处理方法即为积累。 积累方法分为相干和非相干积累,相干积累即利用接收脉冲之间的相位关系,将信号的幅度叠加,这种方法的好处是可以把所有雷达回波能量直接相加;非相干积累则 信号包络 之后进行,在此时我们丢掉了复信号的信息,只保留了模值,没有了严格的相位关系。

matlab demo

参考链接

pulint

npulse = 10;
x = repmat(sin(2*pi*(0:99)'/100),1,npulse) + 0.1*randn(100,npulse);
y = pulsint(x,'noncoherent');%Valid values of METHOD are 'coherent' and 'noncoherent'. The values are not case sensitive.
%% for coherent,
y0 = sum(x,2); %i.e. 每个脉冲叠加
%% for non-coherent
y1 = zeros(size(x,1),1);
for i = 1:size(x,1)
    y1(i) = norm(x(i,:)); % 每次采样的平方和开方
end
figure;
plot(abs(y1))
hold on 
plot(abs(y))
sum(y1-y) % 二者是一致的
% for nonherent
% Default: 'noncoherent'
figure
subplot(2,1,1)
plot(abs(x(:,4)))
ylabel('Magnitude')
title('First Pulse')
subplot(2,1,2)
plot(abs(y))
ylabel('Magnitude')
title('Integrated Pulse')
 

 

 

更多推荐

雷达信号的脉冲累积(pulse integration)coherent and non-coherent 相干累积与非相干累积