how to plot step response from an unknown first order system?

im having trouble with plotting the step response beacause my system doesnt reach the steady state. i need help to increase the ouput till it reaches the steady state

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 2 月 27 日

0 投票

Unknown first order system should have an unknown step response. If your system is stable, you normally can see the steady state.
%Example
N=1;
D=[1 10]
h=tf(N,D);
step(h)
you can check the stability:
r=roots(D)
the real part of r should be negative

カテゴリ

質問済み:

2016 年 2 月 27 日

回答済み:

2016 年 2 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by