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

编程知识 行业动态 更新时间:2024-06-13 00:19:09

名词解释

  • 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 相干累积与非相干累积

本文发布于:2023-03-27 22:23:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/f126ef06e1b665da057822e9d9c3f16d.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:脉冲   与非   信号   pulse   coherent

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!