GUI Slider Update Error

2 visualizaciones (últimos 30 días)
Lawson Hoover
Lawson Hoover el 2 de Dic. de 2012
I have been trying to created a slider that actively updates a edit box in a GUI. Everything else in the GUI shows up except the slider. Also it had worked for around thrity inutes then stopped working. the Code is:
[sldr,pnl,edt] = ...
sliderPanel(gcf,...
{'title','Threshold','pos',[0.1 0.2 0.8 0.15],'fontweight','b','units','pixels'},...
{'max',80,'value',60,'callback','disp(''Slid'')'},...
{},...
{{'string','Low','foregroundcolor','b'},...
{'string','High','foregroundcolor','r'},...
{'fontweight','b'}},...
'%0.1f');
And the Error Code is :
Undefined function 'sliderPanel' for input arguments of type 'cell'.
Error in Beam_Deflection_GUI (line 161)
[sldr,pnl,edt] = ...
Any ideas?

Respuesta aceptada

Image Analyst
Image Analyst el 2 de Dic. de 2012
Why do you put braces around line? They're not necessary and I don't know how it ever worked in the first place, unless this is what you added to break it. Remove the braces at the beginning and end of each line and see how that goes.
  1 comentario
Lawson Hoover
Lawson Hoover el 2 de Dic. de 2012
Im not sure how but It is working again, with the cell array inputs. When I try it with out the brackets, the slider does not appear.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by