필터 지우기
필터 지우기

How can I simulate time response of dynamic system to arbitrary inputs without shown the arbitary input on my plot?

조회 수: 1 (최근 30일)
How can I simulate time response of dynamic system to arbitrary inputs without shown the arbitary input on my plot?
H = [tf([2 5 1],[1 2 3])];
[u,t] = gensig('square',4,10,0.1);
lsim(H,u,t)

채택된 답변

Sebastian Castro
Sebastian Castro 2016년 4월 12일
If you assign outputs to lsim, you don't get the specialized plot and simply get the output variables. So, if you add an extra line to your code as follows, you're good to go:
H = [tf([2 5 1],[1 2 3])];
[u,t] = gensig('square',4,10,0.1);
[yout,tout]= lsim(H,u,t);
plot(tout,yout)
- Sebastian

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear Model Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by