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?

 채택된 답변

KSSV
KSSV 2020년 9월 4일
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)

추가 답변 (0개)

카테고리

도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기

질문:

2020년 9월 4일

댓글:

2020년 9월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by