MATLAB: GUI creation

gui

Can anyone please let me know as to what is the exact procedure i need to adopt,if i want to take an input from the user in one text box and display the result after some computations corresponding to the user input, on another text box.All these must happen once i press the push button in GUI

Best Answer

Respond to button-press callback:
1. Ask for input
2. Process input
3. Display output
These are the functions for (1) and (3)
doc inputdlg
doc msgbox
If you don't know how to create a GUI:
doc guide
And click the link at the bottom of the page (in How To): Creating GUIs