PID controller, transfer function
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Anny idea how i can type in the transfer functions for P, PI, PD and PID and compare them in a bode plot together?
0 Commenti
Risposte (1)
Arkadiy Turevskiy
il 29 Apr 2016
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')
0 Commenti
Vedere anche
Categorie
Scopri di più su Get Started with Control System Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!