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
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
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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by