Help with slider in matlab GUI
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
aurc89
el 28 de Sept. de 2014
Respondida: Image Analyst
el 28 de Sept. de 2014
In a GUI file, how can I use a slider to increase or decrease by one unit the number contained into an edit text box ? Thanks
0 comentarios
Respuesta aceptada
Image Analyst
el 28 de Sept. de 2014
Set up the slider like this in your start up code (untested):
sliderMin = get(handles.slider, 'Min');
sliderMax = get(handles.slider, 'Max');
increment = 1/(sliderMax-sliderMin);
sliderStep = set(handles.slider, 'Step', [increment, 2*increment]);
To get the integer value later:
sliderValue = round(get(handles.slider, 'Value'));
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Debugging and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!