How to define transfer function as function in s

조회 수: 26 (최근 30일)
Bandar
Bandar 2020년 10월 13일
답변: Rohit Pappu 2020년 10월 29일
In control systems, we use transfer functions a lot. One way to define transfer function is merely to use tf(). For example, we could define such transfer function as
s=tf('s');
G=(s+1)/(s+3);
But what I would like to do is to define G as G(s) without explicitly defining the underlying transfer function and treat it as transfer function so that I can use Control Toolbox (i.e. feedback(), series(), parallel(),...,etc) to carry out some manipulations. How one can achieve this ?
  댓글 수: 5
Star Strider
Star Strider 2020년 10월 17일
I realise that. The point is that you can do the symbolic manipulations in the Symbolic Math Toolbox and then manually express the results as Control System Toolbox objects.
Bandar
Bandar 2020년 10월 22일
I have to use some Control systems toolbox functions.

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

답변 (1개)

Rohit Pappu
Rohit Pappu 2020년 10월 29일
Functions like feedback() , series() etc, take in dynamic system models as input arguments. Additional information about dynamic system models can be found here

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by