필터 지우기
필터 지우기

PID controller, transfer function

조회 수: 2 (최근 30일)
Kristoffer Brandsøy
Kristoffer Brandsøy 2016년 4월 29일
답변: Arkadiy Turevskiy 2016년 4월 29일
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일
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')

카테고리

Help CenterFile Exchange에서 PID Controller Tuning에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by