MATLAB Function Reference
  Go to function:
    Search    Help Desk 
menu    Examples   See Also

Generate a menu of choices for user input

Syntax

Description

k = menu('mtitle','opt1','opt2',...,'optn') displays the menu whose title is in the string variable 'mtitle' and whose choices are string variables 'opt1', 'opt2', and so on. menu returns the value you entered.

Remarks

To call menu from another ui-object, set that object's Interruptible property to 'yes'. For more information, see the MATLAB Graphics Guide.

Examples

k = menu('Choose a color','Red','Green','Blue') displays

After input is accepted, use k to control the color of a graph.

See Also

The uicontrol command in the MATLAB Graphics Guide, and:

input       Request user input



[ Previous | Help Desk | Next ]