MATLAB: Problem with GUIDE/Handle

fisfuzzy logicguidehandleMATLAB

Hi, Kindly assist me in displaying an output in a particular static text or edit text in Graphical User Interface Development Environment(GUIDE). Thanks.

Best Answer

set(handles.text1, 'String', 'Easy as juggling')
This would be for an object whose Tag property had been set to "text1" when the object was created.