Azzera filtri
Azzera filtri

How can we implement ?

1 visualizzazione (ultimi 30 giorni)
Jes
Jes il 7 Ott 2014
Commentato: Jes il 27 Mag 2015
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

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 7 Ott 2014
Modificato: Azzi Abdelmalek il 7 Ott 2014
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)

Più risposte (0)

Categorie

Scopri di più su Get Started with DSP System Toolbox in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by