how can I extract internal delay from a discrete system when I convert it to continuous with d2c?
2 次查看(过去 30 天)
显示 更早的评论
how can I extract internal delay from a discrete system when I convert it to continuous with d2c?
0 个评论
采纳的回答
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Classical Control Design 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!