impulse response from transfer function in matlab
Mostrar comentarios más antiguos
i have a transfer function given by
H(z)= 1-z^(-1)/1-z^(-1)+z^(-2)
how to find its impulse response h(n) in matlab what is the code for the same ?
Respuesta aceptada
Más respuestas (1)
Abdul Jabbar
el 10 de Dic. de 2016
0 votos
z^-1 -4z^-2 -2z^-4 can any one tell me that how i can find the impulse response of this function?
2 comentarios
Petar Mostarac
el 8 de Dic. de 2023
Editada: Petar Mostarac
el 8 de Dic. de 2023
Is this a joke? :)
It is -1, -4 0 -2 and zeros to inf.
z^-1 is one sample delay, one step delay
Formarly, use basic knowladge to find H(z) in form H=b/a and then you can use:
h=impz(b,a, length_of_impulse_response)
In your question: b=[1 -4 0 -2] and a=[1 0 0 0]
If it is a joke, then is a good one :)
Paul
el 8 de Dic. de 2023
Actually, the solution with impz should have: b = [0 1 -4 0 -2]
Categorías
Más información sobre Digital Filter Analysis en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

