Effacer les filtres
Effacer les filtres

About the Number property of figure function

12 vues (au cours des 30 derniers jours)
wenlong
wenlong le 21 Juil 2016
Commenté : wenlong le 28 Juil 2016
How to set the Number property of figure function of 2015B? Each time I set like this: figure('Position', [9 39 900 300], 'Number', 3, 'Name', 'Velocity'); It was wrong but I saw the example just did like this! Thanks1

Réponse acceptée

Adam
Adam le 21 Juil 2016
'Number' is a read-only property.
You can call:
hFig = figure( 3 ); set( hFig, 'Position', [9 39 900 300], 'Name', 'Velocity');
though beware that the instruction:
figure(3)
will either create a new figure or, if a figure 3 already exists it will simply bring this existing figure into focus and then act upon that.
  1 commentaire
wenlong
wenlong le 28 Juil 2016
Thanks, Adam, I got it! I thought the original source codes confused the Number and NumberTitle

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by