• 大小: 2KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: Matlab
  • 标签: fhss  

资源简介

跳频抗干扰程序仿真matlab,分析结果图表显示,可以根据需要自己修改,运行无障碍

资源截图

代码片段和文件信息

% Lab 06
% WiCom_1
% By Kashif Shahzad 
% 01-ET-31
% 3rd July 2004

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Frequency Hopping Spread Spectrum
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clc
clear

% Generation of bit pattern
s=round(rand(125));    % Generating 20 bits
signal=[];  
carrier=[];
t=[0:2*pi/119:2*pi];     % Creating 60 samples for one cosine 
for k=1:25
    if s(1k)==0
        sig=-ones(1120);    % 120 minus ones for bit 0
    else
        sig=ones(1120);     % 120 ones for bit 1
    end
    c=cos(t);   
    carrier=[carrier c];
    signal=[signal sig];
end
subplot(411);
plot(signal);
axis([-100 3100 -1.5 1.5]);
title(‘\bf\it Original Bit Sequence‘);

% BPSK Modulation of the signal
bpsk_sig=signal.*carrier;   % Modulating the signal
subplot(41

评论

共有 条评论

相关资源