GUI Slider Update Error
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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?
0 commentaires
Réponse acceptée
Image Analyst
le 2 Déc 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.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Environment and Settings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!