Question about exponential transfer function

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. ?

답변 (1개)

Patrik Ek
Patrik Ek 2014년 1월 23일

0 개 추천

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.

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

Kim
2014년 1월 23일

답변:

2014년 1월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by