How to set all the labels for 2 different axes in matlab gui?

hi all
i have 2 different axes in matlab gui: 1)xlabel('Radius'), ylabel ('Radius'), zlabel ('E-field') 2)xlabel('Diameter'), ylabel('Power')
but how can i set in the OpeningFcn on axes1 and axes2??

 Respuesta aceptada

Wouter
Wouter el 20 de Mzo. de 2013
like this:
xlabel(handles.axes1,'Radius')
ylabel(handles.axes1,'Radius')
zlabel(handles.axes1,'E-field')
xlabel(handles.axes2,'Diameter')
ylabel(handles.axes2,'Power')

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Preguntada:

el 20 de Mzo. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by