资源简介
matlab仿真的频率捷变雷达信号,进行了时域显示和脉压分析,适用于对雷达信号处理学习的同学。
代码片段和文件信息
%频率捷变脉冲信号仿真
clear all;
close all;
clc;
%除初始相位外(仿真中取0),信号参数均确定
% A=60; %幅度取60mV
Tao=60e-6; %脉宽6us
Tr=3e-3; %重复周期
N=5; %脉冲数量
B=3e6;
%复包络为周期性脉冲信号
Fs=2*B; %采样频率取100MHz
Ts=1/Fs; %采样间隔0.01us
t=Ts:Ts:Tr*N; %时间序列
n=length(t);
d=0:Tr:Tr*N;
rect=0;
for i=1:1:4
rect=rect+rectpuls((t-i*Tr)Tao);
end;
figure(5)
plot(t*1e3rect)
%雷达脉冲信号
%频率捷变范围 在5 10 15 20 四个频率上跳变
fo=28e6; %基准频率取40MHz
f=[5e6 10e6 15e6 20e6];
k=1;%频率选取变量
for i=1:1:n-1
m=floor(k);
if m>4
m=m-4;
end
s(i)=exp(j*2*pi*fo*t(i))*rect(i)*exp(j*2*pi*(f(m)-fo)*t(i));
if xor(rect(i)rect(i+1))==1
k=k+0.5;
end
end
%画出波形图
%脉冲串
figure(1);
plot(t(1:n-1)*1e3s(1:n-1));
% xlim([0 300]);
% ylim([-100 100])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1631 2013-12-17 20:21 pinlvjiebian.m
----------- --------- ---------- ----- ----
1631 1
- 上一篇:matlab代码实现的稀疏自编码器
- 下一篇:各种matlab模糊辨识算法
相关资源
- 8916_msimage.mbn
- image normalization图像归一化matlab程序
- 灰狼优化算法的仿真
- 图像分割matlab
- BM3D matlab
- AGCWD算法 电子科技大学图像处理与应
- Modelling.the.Wireless.Propagation.Channel.A.s
- polsarpro,matlab、Pauli、Yamaguchi、Cloud
- HDR_image-master MATLAB仿真程序
- image fusion tools
- IMAGE_MATLAB_GUI
- 近邻传播聚类算法及matlab API
- Deblurring Images Matrices Spectra and Filteri
- ISARImagingWithMATLABAlgorithms.rar
- ISAR Imaging With MATLAB Algorithms
- _image fusion(精品.zip
- matlab开发-Poissonimageediting
- DTLSDatagramTLS升级包
- BM3D滤波算法+BM3D_image,可实现
- digital image correlation
- Biosignal and biomedical image processing matl
- Matlab编写的决策树及剪枝算法实现数
- HDR_image-master MATLAB 仿真程序 包含多张
- kmeans图像分类
- Image Deformation Using Moving Least Squaresma
- matlab开发-Image2Data
- 复杂网络的matlab源程序好不容易找到
- Image Deformation Using Moving Least Squares 移
- MATLAB实现灰度处理
- Numerical Simulation of Optical Wave Propagati
评论
共有 条评论