no figure toolbar
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
When I open a figure in Matlab the toolbar is not displayed. So if I enter
>> figure
I get the same result as if I entered
>> figure('Toolbar','none')
How do I change the default behavior?? Thanks.
Eric
0 commentaires
Réponses (3)
Matt Fig
le 15 Fév 2011
I think what you want is this:
set(0,'defaultfiguretoolbar','figure');
To see the list of options, use:
set(gcf,'toolbar')
3 commentaires
Matt Fig
le 16 Fév 2011
Put the command in your startup.m file. just type:
edit startup
This is the file MATLAB runs every time it starts.
Matt Fig
le 16 Fév 2011
Also, see Loren's blog on the startup.m file. Go to BLOGS at the top of the page, click on Loren's blog and search for startup.
Jiro Doke
le 15 Fév 2011
I'm not sure if you're asking how to not display the toolbar by default, or asking why your figure does not display the toolbar (and how to fix the default).
set(0, 'defaultFigureToolbar', 'none')
To remove the default setting,
set(0, 'defaultFigureToolbar', 'remove')
0 commentaires
Oleg Komarov
le 16 Fév 2011
set(0,'defaultfiguretoolbar','none')
if is there, then comment it out.
Oleg
0 commentaires
Voir également
Catégories
En savoir plus sur Graphics Object Properties 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!