feedback(P*C,1)
조회 수: 4 (최근 30일)
이전 댓글 표시
I have seen in some places the feedback function is called in the way "feedback(C*P,1)".
P = 1/(s^2 + 10*s + 20);
Kp = 300;
Kd = 10;
C = pid(Kp,0,Kd)
T = feedback(C*P,1)
t = 0:0.01:2;
step(T,t)
After searching for in the documentation,
I could not find a match.
could someone explain how feedback(C*P,1) is interpreted here?
댓글 수: 0
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Software Development Tools에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!