How can we implement ?

1 次查看(过去 30 天)
Jes
Jes 2014-10-7
评论: Jes 2015-5-27
y(n)=(1/2)*(x(n)*A(1)+y(n-1)*A(2)-y(n-2)*A(3)+y(n-3)*A(4)-y(n-4)*A(5));
n=1:200

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-10-7
编辑:Azzi Abdelmalek 2014-10-7
A=[ 1 2 3 4 5]
D=[1 A(2) -A(3) A(4) -A(5)]
N=A(1)/2
x=ones(1,200) % your input signal
y=filter(N,D,x)
stem(y)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with DSP System Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by