matlab求分别求下面两个m序列的自相关和互相关

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab求分别求下面两个m序列的自相关和互相关相关的知识,希望对你有一定的参考价值。

clear
clc
G=127; % 序列长度
%Generation of first m-sequence using generator polynomial [211]
sd1 =[0 0 0 0 0 0 1]; % 移位寄存器初始状态(0000001)
PN1=[]; % 第一个m序列
for j=1:G % 第一个m序列
PN1=[PN1 sd1(7)];
if sd1(1)==sd1(5)
temp1=0;
else temp1=1;
end
sd1(1)=sd1(2);
sd1(2)=sd1(3);
sd1(3)=sd1(4);
sd1(4)=sd1(5);
sd1(5)=sd1(6);
sd1(6)=sd1(7);
sd1(7)=temp1;
end
subplot(2,1,1)
stem(PN1)
title('M-sequence generated by generator polynomial [211]')

%Generation of second m-sequence using generator polynomial [217]
sd2 =[0 0 0 0 0 0 1]; % 移位寄存器初始状态(0000001)
PN2=[]; % 第二个m序列
for j=1:G % 10 001 11
PN2=[PN2 sd2(5)];
if sd2(1)==sd2(5)
temp1=0;
else temp1=1;
end
if sd2(6)==temp1
temp2=0;
else temp2=1;
end
if sd2(7)==temp2
temp3=0;
else temp3=1;
end
sd2(1)=sd2(2);
sd2(2)=sd2(3);
sd2(3)=sd2(4);
sd2(4)=sd2(5);
sd2(5)=temp3;
sd1(6)=sd1(7);
sd1(7)=temp3;
end
subplot(2,1,2)
stem(PN2)
title('M-sequence generated by generator polynomial [217]')

参考技术A 用xcorr函数或者corr函数就可以求出追问

我知道使用这两个函数的,但是matlab里面出不来图像,是我太笨写不对吧,具体怎么写?

追答

互相关函数或自相关求出来的都是一个数值,不是向量??怎么还要画图像呢??

追问

x为t,相关性为Y轴,比如m序列的互相关性:

本回答被提问者采纳

以上是关于matlab求分别求下面两个m序列的自相关和互相关的主要内容,如果未能解决你的问题,请参考以下文章

自相关和互相关函数计算方法总结及心得体会

如何利用matlab求相关系数?

如何利用matlab求相关系数?

matlab中已知协方差矩阵,怎样算相关系数?

关于互相关函数的一些问题,希望懂的人能给我一些帮助,感激不尽!!!

我用matlab自己编写了一个求互相关的和用xcorr函数出来结果不同我想问有没有啥方法把xcorr结果统一?