214670964 发表于 2012-8-30 15:24

自相关函数法去噪作图

采用自相关函数对加噪信号进行去噪,程序和图如下,但是通过自相关去噪后得到的图形是左右对称的,那么我现在想得到横坐标0右边的那块图形,程序做什么修改呢,请高手指点。
t=0:0.005:1;
y=sin(2*pi*10*t);
y2=0.3*randn(1,length(y));
figure(3)
subplot(411);
plot(t,y);
subplot(412);
plot(t,y2);
y3=y+y2;
subplot(413);
plot(t,y3);
subplot(414);
=xcorr(y3,'unbiased');
plot(b*0.005,a);

lragy 发表于 2012-8-30 23:34

t要取负的部分,哥们,平常有的什么故障数据?

214670964 发表于 2012-9-3 10:33

回复 2 # lragy 的帖子

没有诶 确实数据啊 你呢

lragy 发表于 2012-9-3 22:52

没有诶 确实数据啊??what??

214670964 发表于 2012-9-8 20:52

回复 4 # lragy 的帖子

没有故障数据诶,纠结啊
页: [1]
查看完整版本: 自相关函数法去噪作图