채택된 답변

rubindan
rubindan 2020년 5월 24일

1 개 추천

Option 1:
s=tf('s');
G = 200*(s+0.4)*exp(-0.1*s)/s/s/(s+10)^2;
bode(G)
Option 2:
G = tf(200*[1 0.4],conv(conv([1 10],[1 10]),[1 0 0]) );
G.InputDelay=0.1;
bode(G)

댓글 수: 1

madhan ravi
madhan ravi 2020년 5월 25일
Moved from flag as a comment, Toan Dang Van comments:
tks u

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

추가 답변 (0개)

질문:

2020년 5월 24일

댓글:

2020년 5월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by