필터 지우기
필터 지우기

how to bode plot function.

조회 수: 2 (최근 30일)
Toan Dang Van
Toan Dang Van 2020년 5월 24일
댓글: madhan ravi 2020년 5월 25일
please help me bode plot this:

채택된 답변

rubindan
rubindan 2020년 5월 24일
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개)

카테고리

Help CenterFile Exchange에서 Frequency-Domain Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by