How to add +180 degree in phase of bode plot?

조회 수: 2 (최근 30일)
Saunak Bhalsod
Saunak Bhalsod 2016년 11월 7일
편집: Robert 2016년 11월 8일
I am trying to draw the bode plot of the system who have 180 degree phase shift. But It is not showning that boost. So how to add phase manually in bode plot?

답변 (1개)

Robert
Robert 2016년 11월 7일
편집: Robert 2016년 11월 8일
If you generate the plot with bodeplot, you can use the phase matching feature described in the documentation. From that page:
sys = tf(1,[1 1]);
h = bodeplot(sys);
p = getoptions(h);
p.PhaseMatching = 'on';
p.PhaseMatchingFreq = 1;
p.PhaseMatchingValue = 750;
setoptions(h,p);
  댓글 수: 3
Saunak Bhalsod
Saunak Bhalsod 2016년 11월 7일

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

카테고리

Help CenterFile Exchange에서 Get Started with Control System Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by