
Hi, how can I calculate an impulse response of the LTI system, for a given function : y[n] - 0.5*y[n-1] = -0.5*x[n] + x[n-1]
조회 수: 3 (최근 30일)
이전 댓글 표시
% create a symbolic expresion for y(n) and x(n)
syms y(n)
syms x(n)
%define function for transform Z
y(n)= 0.5*y(n-1)-0.5*x(n)+x(n-1);
ztrans(y(n))
댓글 수: 0
채택된 답변
Abraham Boayue
2018년 3월 23일
I hope this will be of some help.

b = [1, -.5];
a = [-.5, 1];
H= zplane(b,a);
댓글 수: 0
추가 답변 (2개)
Abraham Boayue
2018년 3월 22일
Look here.<https://www.mathworks.com/matlabcentral/answers/386745-how-can-i-find-y-n>
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!