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

名词解释

  • 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')
 

 

 

  • 8
    点赞
  • 129
    收藏
    觉得还不错? 一键收藏
  • 5
    评论
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值