error step input and velocity input
Afficher commentaires plus anciens
HOW can Find the error of following system to step input and velocity input.?
g=tf([2000],[1 15 50 2000])
1 commentaire
ali
le 1 Nov 2011
Réponses (1)
Fangjun Jiang
le 1 Nov 2011
The function to use is stepinfo() like below. But your system is not stable. What "error" do you mean? Steady-state error?
sys=tf(1, [1 4 10]);
[y,t]=step(sys);
plot(t,y);grid on;
stepinfo(y,t,1/10)
Catégories
En savoir plus sur Dynamic System Models dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!