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

16 次查看(过去 30 天)
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);

类别

Help CenterFile Exchange 中查找有关 Plot Customization 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by