필터 지우기
필터 지우기

Step func at time different then t = 0

조회 수: 1 (최근 30일)
Alexandru Miculescu
Alexandru Miculescu 2016년 11월 15일
답변: Arkadiy Turevskiy 2016년 12월 6일
Hi. I want to plot the step response of (10*g0) at t = 5. How can i do that? Thank you!
if true
clc;
G = tf([10],[10 1]);
H = 1;
g0 = feedback(G,H)
Kp = 2.4;
Ki = 1.5;
Kd = 0;
C = pid(Kp,Ki,Kd);
g0 = feedback(C*G,H);
step(10*g0);
end
  댓글 수: 1
Akash Kalghatgi
Akash Kalghatgi 2016년 11월 15일
Provide a phase shift, like (10*g0+ "phase shift") I don't know the exact syntax for MATLAB, so you've got to search it. Type 'help (function name)' in command window for more information about any function

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

답변 (1개)

Arkadiy Turevskiy
Arkadiy Turevskiy 2016년 12월 6일
The question is not clear. Does a. Step happens at 0 secs and you want to show the response at 5 secs? or b. Step happens at 5 secs?
Assuming you ask about the latter:
[Y,T]=step(10*g0);
plot(T+5,Y)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by