%忽视了频率偏移
clear;
clc;
close all;
load 收到的射频信号.mat
svnum=5;
gpsmatch=IFSignal;
IFSignal=[IFSignal IFSignal];
n=length(gpsmatch);
m=25000;
for i=1:m
res(i)=gpsmatch*IFSignal(1,i:i+n-1)';
end
plot(1:m,res);
%找到GPS信号中的导航电文
%检验GPS信号最大值处是否有相位偏移
res2=abs(res);
for i=1:100
[C I]=max(res2);
res(1,I)=0;
index(1,i)=I;
end;
w=length(gpsmatch);
m=1;
for i=index(1,1):w:(length(IFSignal)-w+1)
navigationbit(m)=(IFSignal(i:i+w-1)*gpsmatch')/w;
m=m+1;
end
navigationcode=zeros(1,1);
navigationcode(1,1)=navigationbit(1,1);
m=2;count=0;
for i=2:length(navigationbit)
if(navigationbit(1,i)~=navigationbit(1,i-1))
navigationcode(1,m)=navigationbit(1,i);
m=m+1;
count=0;
else
count=count+1;
if(count>=5)
navigationcode(1,m)=navigationbit(1,i);
m=m+1;
count=0
end
end
end
%ND转化为数字
navigationcode=navigationcode./abs(navigationcode);
index1=find(navigationcode<0);
navigation(index1)=zeros(1,length(index1));
table2=[0 0 0 0;0 0 0 1;0 0 1 0;0 0 1 1;0 1 0 0;0 1 0 1;0 1 1 0;0 1 1 1;
1 0 0 0;1 0 0 1;1 0 1 0;1 0 1 1;1 1 0 0;1 1 0 1;1 1 1 0;1 1 1 1;];
Result='';
for i=1:4:length(navigationcode)
tt=navigationcode(i:i+3);
matchtable=table2(:,1:4)-[tt;tt;tt;tt;tt;tt;tt;tt;tt;tt;tt;tt;tt;tt;
tt;tt];
matchtable=sum(abs(matchtable)');
tempchar='0';
bestmatch=find(matchtable==min(matchtable));
switch (bestmatch)
case 1
tempchar='0';
case 2
tempchar='1';
case 3
tempchar='2';
case 4
tempchar='3';
case 5
tempchar='4';
case 6
tempchar='5';
case 7
tempchar='6';
case 8
tempchar='7';
case 9
tempchar='8';
case 10
tempchar='9';
case 11
tempchar='a';
case 12
tempchar='b';
case 13
tempchar='c';
case 14
tempchar='d';
case 15
tempchar='e';
case 16
tempchar='f';
otherwise
end
Result=strcat(Result,tempchar);
end
Num1=hex2num(Result(1:16));
Num2=hex2num(Result(17:32));
Num3=hex2num(Result(33:48));
没有合适的资源?快使用搜索试试~ 我知道了~
matlab_实现弱信号条件下的检测,可以检测到较低信噪比条件下的信号
共12个文件
m:10个
mat:2个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 1 下载量 196 浏览量
2022-07-09
21:36:39
上传
评论
收藏 1.63MB ZIP 举报
温馨提示
matlab_实现弱信号条件下的检测,可以检测到较低信噪比条件下的信号
资源推荐
资源详情
资源评论
收起资源包目录
实现弱信号条件下的检测,可以检测到较低信噪比条件下的信号.zip (12个子文件)
实现弱信号条件下的检测,可以检测到较低信噪比条件下的信号
SpreadSpectrum.m 694B
AcquireCACode1.m 1KB
NavigationData.m 566B
AcquireCACode.m 1KB
收到的射频信号.mat 188KB
modulation.m 771B
GPS.m 1KB
CACode.m 1013B
CAcorrelation.m 218B
getposition.m 2KB
CACode2.m 783B
捕获信息.mat 1.43MB
共 12 条
- 1
资源评论
- badstones2023-08-11资源太好了,解决了我当下遇到的难题,抱紧大佬的大腿~
wouderw
- 粉丝: 334
- 资源: 2960
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功