different results using simlink and script
조회 수: 9 (최근 30일)
이전 댓글 표시
I would like to ask why I got different results (step response) using Simulink compare to script
although the system is simple unstable second order
Script:
Ksn=5000; Ki=158; m=3.14; Kx=1.58e6; Kp=10; Td=0.001;
s = tf('s');
G= Ksn*Ki/(m*s^2-Kx)
Gc=Kp*(Td*s+1);
Gl=G*Gc;
Gf=feedback(Gl,1);
step (Gf)

댓글 수: 0
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!