资源简介
扩频通信的Matlab仿真程序。
使用了GUI界面设计。
可使用三种伪随机码(m序列,gold码,walsh序列),可选择直接扩频或跳频方式来实现。
代码片段和文件信息
%直接扩频处理
function rec_seq=direct_spread(rand_x1pn_sequences_n)
figure(3);
clf;
gt=rand_x1.*pn_sequence; %直接扩频
subplot(211);
plot(gt);
axis([0 250 -2 2]);
title(‘扩频后的码序列‘);
grid on;
seq_length_1=length(gt);
n_sample_1=0:(seq_length_1-1);
f_1=n_sample_1*2*pi/seq_length_1;
subplot(212);
plot(f_1-piabs(fftshift(fft(gt))));
%axis([-100 100 0 2000]);
title(‘扩频后的码序列频谱图‘);
grid on;
sampling_2=20;
gt1=signal_sampling(gtsampling_2);%采样
seq_length=length(gt1);
%BPSK调制
fs=5e5;
f0=1e5;
AI=1;
cI=zeros(1seq_length);
for i=1:seq_length
cI(i)=AI*cos(2*pi*f0*(i-1)/fs);
end
x_bpsk=gt1.*cI;
figure(4);
subplot(211);
plot(x_bpsk);
axis([400 600 -2 2]);
title(‘BPSK调制后的波形‘);
grid on;
%加噪模块
x_bpsk1=awgn(x_bpsks_n);%信噪比SNR为s_ndb
subplot(212);
plot(x_bpsk1);
axis([400 600 -2.5 2.5]);
title(‘加噪后已调波的波形‘);
grid on;
%解调模块
figure(5);
clf;
s=x_bpsk1.*cI*2;
subplot(211);
plot(s);
axis([400 600 -3 3]);
title(‘经解调后的波形‘);
grid on;
%低通滤波
wn=0.5/pi; %截止频率wn=fn/(fs/2),这里fn为扩频码的带宽5M
b=fir1(12wn);
x_recovery=filter(b1s);
subplot(212);
plot(x_recovery);
axis([400 600 -3 3]);
title(‘经滤波后的波形‘);
grid on;
x_recovery_1=x_recovery(round(sampling_2/2):sampling_2:end);%抽样
%相关解扩
jk_code=x_recovery_1.*pn_sequence;
rec_seq=jk_code;
%频谱图
figure(6);
clf;
n_sample=0:(seq_length-1);
f=n_sample*2*pi/seq_length;
subplot(221);
plot(f-piabs(fftshift(fft(x_bpsk))));
%axis([-2.5 2.5 0 1000]);
title(‘bpsk已调波的频谱图‘);
grid on;
subplot(222);
plot(f-piabs(fftshift(fft(x_bpsk1))));
%axis([-2.5 2.5 0 1000]);
title(‘加噪已调波的频谱图‘);
grid on;
subplot(223);
plot(f-piabs(fftshift(fft(s))));
%axis([-2.5 2.5 0 1000]);
title(‘解调后的频谱图‘);
grid on;
subplot(224);
plot(f-piabs(fftshift(fft(x_recovery))));
%axis([-100 100 0 2000]);
title(‘滤波后信号的频谱图‘);
grid on;
figure(7);
clf;
subplot(211);
plot(jk_code);
axis([0 seq_length_1*1.1 -2 2]);
title(‘解扩后的波形‘);
grid on;
subplot(212);
plot(f_1-piabs(fftshift(fft(jk_code))));
%axis([-100 100 0 2000]);
title(‘解扩后波形的频谱图‘);
grid on;
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-07-16 16:32 扩频通信的Matlab代码\
文件 2245 2019-05-26 14:28 扩频通信的Matlab代码\direct_spread.m
文件 1543 2019-05-26 13:46 扩频通信的Matlab代码\freq_hopping.m
文件 1757 2019-05-26 10:44 扩频通信的Matlab代码\my_seq.m
文件 69785 2019-05-26 13:57 扩频通信的Matlab代码\my_work.fig
文件 8238 2019-05-26 13:57 扩频通信的Matlab代码\my_work.m
文件 101 2019-07-16 16:34 扩频通信的Matlab代码\readme.txt
文件 330 2019-05-26 12:11 扩频通信的Matlab代码\rec_signal_jud.m
文件 424 2019-05-23 12:26 扩频通信的Matlab代码\select_freq.m
文件 272 2019-05-26 09:22 扩频通信的Matlab代码\signal_sampling.m
相关资源
- Pattern Recognition and Machine Learning(高清
- MATLAB 编程 第二版 Stephen J. Chapman 著
- 均值滤波和FFT频谱分析Matlab代码
- 《MATLAB扩展编程》代码
- HDB3码、AMI码的MATLAB实现
- 3点GPS定位MATLAB仿真
- MATLAB数字信号处理85个实用案例精讲入
- matlab从入门到精通pdf94795
- 欧拉放大论文及matlab代码
- 跳一跳辅助_matlab版本
- 全面详解LTE MATLAB建模、仿真与实现
- MIMO-OFDM无线通信技术及MATLAB实现_孙锴
- MATLAB Programming for Engineers 4th - Chapman
- matlab 各种谱分析对比
- 分数阶chen混沌matlab程序
- 基于粒子群算法的非合作博弈的matl
- MATLAB车流仿真 包括跟驰、延误
- matlab空间桁架计算程序
- 基于MATLAB的图像特征点匹配和筛选
- DMA-TVP-FAVAR
- GPS信号的码捕获matlab代码.7z
- 一维光子晶体MATLAB仿真代码吸收率折
- newmark法源程序
- 传统关联成像、计算鬼成像matlab
- pri传统分选算法
- 摆动滚子推杆盘形凸轮设计
- 医学图像重建作业matlab源码
- Matlab实现混沌系统的控制
- 检测疲劳驾驶
- Matlab锁相环仿真-Phase Locked Loop.rar
评论
共有 条评论