Effacer les filtres
Effacer les filtres

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

14 vues (au cours des 30 derniers jours)
Saunak Bhalsod
Saunak Bhalsod le 7 Nov 2016
Modifié(e) : Robert le 8 Nov 2016
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?

Réponses (1)

Robert
Robert le 7 Nov 2016
Modifié(e) : Robert le 8 Nov 2016
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 commentaires
Saunak Bhalsod
Saunak Bhalsod le 7 Nov 2016
Saunak Bhalsod
Saunak Bhalsod le 7 Nov 2016

Connectez-vous pour commenter.

Catégories

En savoir plus sur Plot Customization dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by