Discrete time system difference equation

조회 수: 10 (최근 30일)
Usman
Usman 2016년 2월 10일
답변: Torsten 2016년 2월 11일
I want to know what is the method to solve such a problem in matlab. Considering a discrete time system difference equation as follows:
How do I compute the value of y @ time k=5. when the input sequence is U=[1 -2 3 -4] and the initial conditions are Y(1)=1 , y(2)=1.
y=??? Please ; I want information regarding such a problem . I searched everywhere but didn't help me properly. If you can explain the steps of the solving it will be very helpful.... Thanks in advance :)

채택된 답변

Torsten
Torsten 2016년 2월 11일
u=[1 -2 3 -4];
y(1)=1;
y(2)=1;
for k=2:4
y(k+1)=-2*y(k)+3*y(k-1)+1.5*u(k)+4*u(k-1);
end
y(5)
Best wishes
Torsten.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by