Effacer les filtres
Effacer les filtres

Plotting in GUI

1 vue (au cours des 30 derniers jours)
Euan
Euan le 26 Nov 2011
I am trying to plot mulitiple graphs in a GUI.
I'm using this code
plot(x, y, 'Parent', handles.Force)
plot(a, b, 'Parent', handles.Angle)
Can anyone tell me how I can name the respective graphs Force and Angle?
Thanks

Réponses (2)

Naz
Naz le 26 Nov 2011
1) Drug two axis objects onto the gui 2) Double click on each and change the tag property name to Force and angle resepctively.
  3 commentaires
Naz
Naz le 26 Nov 2011
Can you use 'static text' object for your title? Just place it above the axis.
Naz
Naz le 26 Nov 2011
I don't understand 'Similarly I am unable to change the names of the axis'. After you double click on the axis, property inspector window should pop-up. Change the string 'axis1' to 'Force' in property 'tag'. And don't forget to save changes on the figure.

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 26 Nov 2011
title(handles.Force, 'Force')
title(handles.Angle, 'Angle')

Catégories

En savoir plus sur Migrate GUIDE Apps 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!

Translated by