why when i make conv between an averaging filter and a noisy circuit it doesn't get filtered?
1 回表示 (過去 30 日間)
古いコメントを表示
n=0:499
x=sin(2*pi*n/50)
y=x+0.1*randn(size(n))
h=[11111]/5
z=conv(h,y)
採用された回答
Image Analyst
2014 年 4 月 29 日
You need commas between the ones in h:
n=0:499
x=sin(2*pi*n/50)
y=x+0.1*randn(size(n))
h=[1,1,1,1,1]/5
z=conv(h,y)
その他の回答 (1 件)
Andrei Bobrov
2014 年 4 月 29 日
編集済み: Andrei Bobrov
2014 年 4 月 29 日
n=0:499;
x=sin(2*pi*n/50);
y=x+0.1*randn(size(n));
h=[1,1,1,1,1]/5;
z=conv(y,h,'same');
3 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!