求高手帮忙看看这个自相关程序有没有错误
clear allclc
A=1;m=0.38;B=0.98;C=2;fr=120;fz=3000;fk=80;
w0=2*pi*fr;
w1=2*pi*fz;
w2=2*pi*fk;
t=1/16384;
t1=0:t:0.0625;
x1=A*(1+m*cos(w0.*t1)).*cos(w1.*t1+B.*sin(w0*t1));
x2=sin(w2*t1);
x3=C*randn(size(t1));
x=x1+x2+x3;
=xcorr(x,'unbiased');
plot(lag*t,cory);
axis();
title('自相关计算获得时域波形');
================================ 计算自相关没有错误。 学习了{:{39}:}
页:
[1]