Question about exponential transfer function
5 次查看(过去 30 天)
显示 更早的评论
Generally in matlab, exponential transfer function can be used by
i.e., exp(M*s) where M<0
which means 'input delay', or derived from 'second translation(shifting) theorem' But, how can we analysis exponential transfer function in matlab such that
i.e., exp(M*s) where M > 0. ?
0 个评论
回答(1 个)
Patrik Ek
2014-1-23
What do you need this for? In general I would say that you cannot do this. Just look att the definition of the laplace transformation. Which is only defined from 0 to infinity. Matlab notice this too by declaring the transfer function as non causal.
s = tf('s')
h = exp(2*s)
Error using tf/exp (line 34)
In "exp(M*s)", M must have nonpositive entries for causality.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Biological and Health Sciences 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!