필터 지우기
필터 지우기

error step input and velocity input

조회 수: 3 (최근 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 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