• 大小: 994B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-24
  • 语言: Matlab
  • 标签: 雷达  Matlab  

资源简介

二相编码调制脉冲压缩信号仿真,采用巴克码。Binar yphase coded pulse

资源截图

代码片段和文件信息

%%%%%%%%%%%%%%     Barker code      %%%%%%%%%%%%%%%
clear all;
Barker_order=7;  % order of barker code
B1=barker(Barker_order)   % Barker code generating by barker function
Bb = xcorr(B1);    %Barker code autocorrelation  
plot(Bb);
grid on;
axis tight;
title(‘Barker code autocorrelation‘); 

%%%%%%%%%%%%%%     Binaryphase coded pulse      %%%%%%%%%%%%%%%
samples=1000;  % numer of samples in one sub_pulse
t=1:samples;
sub_pulse=sin(2*pi*t/samples);
plot (sub_pulse);
pulse=zeros

评论

共有 条评论