MATLAB SIMULINK 7 - GRAPHICAL USER INTERFACE Especificações Página 145

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 216
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 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.
Vista de página 144
1 2 ... 140 141 142 143 144 145 146 147 148 149 150 ... 215 216

Comentários a estes Manuais

Sem comentários