Impulse and step response
이전 댓글 표시
y(n)=(x(n)-3*x(n-1)+4*x(n-2)-2*x(n-3))/2 how do i find the impulse and step response of this system ? in matlab
답변 (1개)
Wayne King
2013년 12월 3일
편집: Wayne King
2013년 12월 3일
B = [1/2 -3/2 2 -1];
[h,t] = impz(B,1);
[u,t] = stepz(B,1);
This is an FIR filter so the impulse response is just the filter coefficients.
카테고리
도움말 센터 및 File Exchange에서 Digital Filter Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!