How can we implement ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jes
el 7 de Oct. de 2014
Comentada: Jes
el 27 de Mayo de 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
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 7 de Oct. de 2014
Editada: Azzi Abdelmalek
el 7 de Oct. de 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)
Más respuestas (0)
Ver también
Categorías
Más información sobre Array and Matrix Mathematics en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!