4 tap moving averaging filter

Hi
for a 4 tap moving averaging filter is following correct
s=1000;
>> x=randn(1,s);
>> b=[0.25,0.25,0.25,0.25];
>> y = filter( b, 1, x );
I will be highly obliged for the advice

답변 (1개)

Adam Danz
Adam Danz 2018년 12월 1일
편집: Adam Danz 2018년 12월 1일

0 개 추천

Moving averages in matlab can be done using movemean() or with filter()

카테고리

도움말 센터File Exchange에서 Digital and Analog Filters에 대해 자세히 알아보기

태그

질문:

2018년 12월 1일

편집:

2018년 12월 1일

Community Treasure Hunt

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

Start Hunting!

Translated by