I want to simulate with various input.

조회 수: 1 (최근 30일)
Saka Toshi
Saka Toshi 2020년 7월 30일
댓글: Saka Toshi 2020년 7월 31일
sys = 1(1+s)
input = 1/s - exp(-2*s)/s
So, how can I get lsim output "sys*input" ??
I must make digital signal of input??

채택된 답변

Paul
Paul 2020년 7월 30일
As a general approach, you can compute the impulse response of the product of the transfer function and the input.
H = tf(1,[1 1]); % assuming typo in the original question.
U1 = tf(1,[1 0]);
U2 = tf(1,[1 0],'InputDelay',2);
t = 0:.001:10;
y = impulse(H*(U1 - U2),t);
figure;plot(t,y),grid
In your particular case, the output is the difference between the step response and the step response delayed by t=2:
% assumes that any(t==2) is true
y1 = step(H,t);
y2 = 0*y1;
ii = find(t>=2);
y2(t>=2) = y1(1:length(ii));
figure;plot(t,y,t,y1-y2,'x'),grid
  댓글 수: 1
Saka Toshi
Saka Toshi 2020년 7월 31일
Thank you!!
You make me more advanced!! :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by