Stepinfo for time delayed systems
조회 수: 10 (최근 30일)
이전 댓글 표시
I have time delayed system. For example,
G(s)=(1/(s+1))*e^-2s
The system has 2 second time delay. How can I find stepinfo data?
댓글 수: 0
채택된 답변
Bora Eryilmaz
2023년 3월 21일
편집: Bora Eryilmaz
2023년 3월 21일
s = tf('s');
G = (1/(s+1))*exp(-2*s)
% Step response information
step(G)
stepinfo(G)
% Time delay of the system
G.InputDelay
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!