资源简介
由7位巴克码为码元,产生一个二相编码信号
代码片段和文件信息
% 产生7为巴克码编码的二相码,采样率100MHz载波10MHz,码宽0.5?s
close all;clear all;clc
code=[1110010] % 7为巴克码
tao=0.5e-6 % 脉冲宽度:0.5?s
fc=10e6 % 载波10MHz
fs=100e6 % 采样率100MHz
t_tao=0:1/fs:tao-1/fs
n=length(code)
pha=0
t_d=7*tao-1/fs
t=0:1/fs:t_d
s=zeros(1length(t))
for i=1:n
if code(i)==1
pha=pi
else pha=0
end
s(1(i-1)*length(t_tao)+1:i*length(t_tao))=cos(2*pi*fc*t_tao+pha)
end
figure
plot(ts);xlabel(‘t(单位:s)‘)title(‘二相码(7位巴克码)‘)
axis([0 t_d -1.2 1.2])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 591 2010-12-27 21:37 bpsk.m
----------- --------- ---------- ----- ----
591 1
- 上一篇:先电Iaas 2.2 openrc配置文件
- 下一篇:CAMPOST V19
评论
共有 条评论