Bode Plot Display All Stability Margins

228 vues (au cours des 30 derniers jours)
Andrew Hunter
Andrew Hunter le 22 Nov 2019
Hi,
Is there a way to programmitically set "All Stability Margins" for a Bode plot from matlab script or command window? I don't want to have to set it everytime in the plot characteristics window.
-Andy
  5 commentaires
Andrew Hunter
Andrew Hunter le 23 Nov 2019
Ahh this is exactly what i was looking for! Thank you! This function characteristicmanager doesnt seem to be available anywhere on the matlab web documentation. Do you know where i can find a comprehensive documentation of the matlab “language” and built in functions?
Adam Danz
Adam Danz le 23 Nov 2019
Modifié(e) : Adam Danz le 25 Nov 2019
Glad I could help (and learn a little, myself!). I added an answer below that contains several links to documentation. There's relatively little information available on some of these properties so I wouldn't spend more than 10 minutes searching the internet before rolling up your sleeves and just trying stuff. Feel free to share what you've learned - I'd be interested in hearing what worked for you.

Connectez-vous pour commenter.

Réponses (3)

Adam Danz
Adam Danz le 23 Nov 2019
Modifié(e) : Adam Danz le 19 Déc 2019
Documentation on bode plots is a bit sparse but here's some ways to modify the plots programmatically.
Use getoptions() / setoption()
The handle output to h=bodeplot(sys) can be used to customize the plot by using the p=getoptions(h) to get the plot options handle and then setoptions(h,p) to apply the changed settings to the plot. See the setoptions link for an example.
Use the plot handle directly
The handle output to h=bodeplot(sys) can also be used to retreive and edit plot properties by using p=get(h). Here's a demo
% Produce bode plot
sys = rss(5);
h = bodeplot(sys);
p = get(h);
% Settings
p.CharacteristicManager(1).CharacteristicLabel = 'All Stability Margins';
Use bodeoptions()
Unlike the other use options above, this option allows you to specify bode plot properties before the plot is created rather than customizing the plot post hoc. opts=bodeoptions returns the default plot options for bode plots which can be customized and then applied to the bodeplot using bodeplot(..., opts). Alternatively, opts=bodeoptions('cstprefs') initializes the plot options according to the options you selected in the Control System and System Identification Toolbox Preferences Editor.
  2 commentaires
Andrew Hunter
Andrew Hunter le 26 Nov 2019
I dont think this has the answer but your other comment does! Replace this answer with that one.
Adam Danz
Adam Danz le 26 Nov 2019
The 2nd method "use the plot handle directly" is the approach in my previous comment. But I added the demo from my comment to make it more useful. The other two methods are to provide a more general summary of how to make changes to bode plots programmatically. Thanks for the suggestion.

Connectez-vous pour commenter.


A Jenkins
A Jenkins le 19 Déc 2019
Adam Danz's method got me started, but didn't quite get me there, and I ended up using this one: (2019a)
sys = rss(5);
h = bodeplot(sys);
h.showCharacteristic('AllStabilityMargins')

Erick Oberstar
Erick Oberstar le 17 Avr 2022
As of Matlab 2020b I can verify this works for both nyqistplot and bodeplot functions
Ts= 0.01
n = [0 0.3680 0.2640];
d = [1.0 -1.368 0.3680];
Gz = tf(n,d,Ts)
Gz.Variable = 'z^-1'
figure; h1=nyquistplot(Gz)
axis([-1.5 1.5 -1.5 1.5]); grid on;
h1.showCharacteristic('AllStabilityMargins');
%zoomcp(h1);% Optional zoom in on critical point
figure; h2 = bodeplot(Gz)
h2.showCharacteristic('AllStabilityMargins');
Note this doesn't work if you generate the plots via "bode" or "nyquist"

Catégories

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

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by