Borrar filtros
Borrar filtros

error step input and velocity input

3 visualizaciones (últimos 30 días)
ali
ali el 1 de Nov. de 2011
HOW can Find the error of following system to step input and velocity input.?
g=tf([2000],[1 15 50 2000])
  1 comentario
ali
ali el 1 de Nov. de 2011
i find for error step
k=dcgain
ess=1/(1+k)

Iniciar sesión para comentar.

Respuestas (1)

Fangjun Jiang
Fangjun Jiang el 1 de Nov. de 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)

Categorías

Más información sobre Passivity and Sector Bounds en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by