Change ylabels on Bode plot

17 vues (au cours des 30 derniers jours)
Oak Lore
Oak Lore le 21 Juin 2015
Commenté : Walter Roberson le 27 Juin 2015
I want to change the ylabels on a Bode plot. As you know with the command bode there are two plots, one for magnitude and one for phase. But when you write:
ylabel('TheLabel')
Only the word "Phase" is changed to "TheLabel", but the word "Magnitude" is unchanged.
How do you write in order to change both the word "Magnitude" and the word "Phase"?

Réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 21 Juin 2015
Modifié(e) : Azzi Abdelmalek le 21 Juin 2015
bode(tf(1,1:2)) % Example
axes=findobj('type','axes')
h_magnitude=get(axes(2),'YLabel')
h_phase=get(axes(1),'YLabel')
set(h_magnitude,'String','NewMagnitude')
set(h_phase,'String','NewPhase')
  4 commentaires
Oak Lore
Oak Lore le 21 Juin 2015
How do you write then? Can you post the code please?
Walter Roberson
Walter Roberson le 27 Juin 2015
s=zpk('s');
p1=1;
Hs=1/(1+s/p1);
bode(Hs, {0.1,10})
axes=findobj('type','axes')
h_magnitude=get(axes(2),'YLabel')
h_phase=get(axes(1),'YLabel')
set(h_magnitude,'String','NewMagnitude')
set(h_phase,'String','NewPhase')

Connectez-vous pour commenter.

Catégories

En savoir plus sur Get Started with Control System Toolbox dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by