Hola Holyo;
Si es posible hacer zoom a los axes desde presionar un boton + o -.
Por ejemplo: si deseas aumentar el axes1, mediante un boton aumentar, debes considerar el siguiente código:
% --- Executes on button press in aumentar.
function aumentar_Callback(hObject, eventdata, handles)
% hObject handle to aumentar (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
axes(handles.axes1);
zoom on
Por ejemplo: si deseas disminuir el axes1, mediante un boton disminuir, debes considerar el siguiente código:
% --- Executes on button press in disminuir.
function disminuir_Callback(hObject, eventdata, handles)
axes(handles.axes1);
zoom out
Espero que sea de alguna ayuda.
Saludos
Dave Correa
[email protected]
Servicios de Programación Matlab
http://fismatlab.blogspot.com/