MATLAB SIMULINK 7 - GRAPHICAL USER INTERFACE Spécifications Page 145

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 216
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 144
Programming Callbacks for GUI Components
4-25
hidden from plotting commands issued by your GUI. To issue plotting
commands from your GUI,
Create a figure and axes.
Save the handle of the figure in the
handles structure.
Create an axes, save its handle, and set its
Parent property to the figure
handle.
Create the plot, save the handles, and set their Parent properties to the
handle of the axes.
The following code illustrates these steps:
fHandle =
figure('HandleVisibility','off','IntegerHandle','off',...
'Visible','off');
aHandle = axes('Parent',fHandle);
pHandles = plot(PlotData,'Parent',aHandle);
set(fHandle,'Visible','on')
Note that not all plotting commands accept property name/property value
specifications as arguments. Consult the reference page for the specific
command to see what arguments you can specify.
Vue de la page 144
1 2 ... 140 141 142 143 144 145 146 147 148 149 150 ... 215 216

Commentaires sur ces manuels

Pas de commentaire