error step input and velocity input

2 次查看(过去 30 天)
ali
ali 2011-11-1
HOW can Find the error of following system to step input and velocity input.?
g=tf([2000],[1 15 50 2000])

回答(1 个)

Fangjun Jiang
Fangjun Jiang 2011-11-1
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)

类别

Help CenterFile Exchange 中查找有关 Passivity and Sector Bounds 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by