필터 지우기
필터 지우기

how can I extract internal delay from a discrete system when I convert it to continuous with d2c?

조회 수: 1 (최근 30일)
how can I extract internal delay from a discrete system when I convert it to continuous with d2c?

채택된 답변

Arnaud Miege
Arnaud Miege 2011년 6월 10일
>> H = tf(2,[1 -0.95],0.1,'InputDelay',25)
Transfer function:
2
z^(-25) * --------
z - 0.95
Sampling time (seconds): 0.1
>> G = d2c(H)
Transfer function:
20.52
exp(-2.5*s) * ----------
s + 0.5129
>> G.InputDelay
ans =
2.5000
>> G.OutputDelay
ans =
0
  댓글 수: 1
sadel
sadel 2011년 6월 10일
No, I mean how can I get 'sysagain' the same with the 'sys'?
sys=tf(1,[1 1],'InputDelay',0.4)
sysd=c2d(sys,0.3)
sysagain=d2c(sysd)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Classical Control Design에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by