PID controller, transfer function

Anny idea how i can type in the transfer functions for P, PI, PD and PID and compare them in a bode plot together?

回答 (1 件)

Arkadiy Turevskiy
Arkadiy Turevskiy 2016 年 4 月 29 日

1 投票

Something like this would do:(note that this requires Control System Toolbox).
P=pid(1)
PI=pid(1,1)
PD=pid(1,0,1)
PID=pid(1,1,1)
bode(P,PI,PD,PID)
legend('P','PI','PD','PID')

カテゴリ

製品

質問済み:

2016 年 4 月 29 日

回答済み:

2016 年 4 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by