how can i find specific value on step response plot?

20 Ansichten (letzte 30 Tage)
Gihyun Kim
Gihyun Kim am 4 Sep. 2020
Kommentiert: Gihyun Kim am 4 Sep. 2020
I've wrote down a code as below
n=[1];
d=[1 3 5];
sys=tf(n,d);
step(sys)
and i got a plot as below
i wanna get a specific value for time, t.
how can i get it?

Akzeptierte Antwort

KSSV
KSSV am 4 Sep. 2020
n=[1];
d=[1 3 5];
sys=tf(n,d);
[y,t] = step(sys) ;
plot(t,y)
Now you have the data, you can use interp1 to get the value.
ti = 2.5 ;
yi = interp1(t,y,ti)

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by