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 件のコメント
ali
ali 2011 年 11 月 1 日
i find for error step
k=dcgain
ess=1/(1+k)

サインインしてコメントする。

回答 (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 Center および File ExchangeArgument Definitions についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by