Borrar filtros
Borrar filtros

User controlled axis limits

3 visualizaciones (últimos 30 días)
Melvin
Melvin el 7 de Jun. de 2013
I have a working code that allows the user to control the axes limits in a GUI figure. The only problem is, let's say I'd like to change my x limits. When I change the lower limit it works perfectly fine, but when I change the upper limit, the lower limit autoscales to its original value. I'm using this line to control my edit-text boxes:
xlim(handles.axes1,[user_entry Inf]);
Is there anything else besides 'Inf' I could use so that the other limit stays the same? Thanks in advance

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 7 de Jun. de 2013
Editada: Azzi Abdelmalek el 7 de Jun. de 2013
xl=str2double(get(handles.axes1,'xlim'));
xl2=xl(2)
xlim(handles.axes1,[user_entry xl2]);
  1 comentario
Melvin
Melvin el 7 de Jun. de 2013
This worked perfectly, thank you Azzi.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by