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
2016-4-29
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')
类别
在 帮助中心 和 File Exchange 中查找有关 PID Controller Tuning 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!