Turning on grid on ltiviewer
Afficher commentaires plus anciens
Hi everyone,
I displayed 2 systems using ltiview as shown below:
load ltiexamples ltiview({'step';'bode';'impulse';'nichols'},Gcl2,Gcl1)
I'm wondering how do we turn on the grid on these plots using MATLAB commands? (i.e without going to 'viewer preferences>style')
Thanks in advance guys.
Réponses (5)
Paulo Silva
le 30 Mar 2011
%brute force way, it turns on the grids for all axes
ha=findobj('type','axes')
arrayfun(@(x)set(x,'XGrid','on'),ha)
arrayfun(@(x)set(x,'YGrid','on'),ha)
1 commentaire
James
le 30 Mar 2011
Walter Roberson
le 30 Mar 2011
After the ltiview() call,
grid on
2 commentaires
Paulo Silva
le 30 Mar 2011
grid on only applies to the current axes
Walter Roberson
le 30 Mar 2011
Ah, it appears ltiview opens a new figure and doesn't return the figure number either. If you findobj('type','figure') then you should be able to locate the figure number; from there you should be able to examine the properties of that figure to see if, for example, it has a particular Tag or Name, or if its children have distinctive properties.
Sorry, I do not have one of the applicable toolboxes so I cannot experiment with this.
James
le 30 Mar 2011
0 votes
James
le 30 Mar 2011
Catégories
En savoir plus sur Plot Customization dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!