MATLAB SIMULINK 7 - GRAPHICAL USER INTERFACE Dokumentacja Strona 145

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 216
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 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.
Przeglądanie stron 144
1 2 ... 140 141 142 143 144 145 146 147 148 149 150 ... 215 216

Komentarze do niniejszej Instrukcji

Brak uwag