zoukankan      html  css  js  c++  java
  • Matlab基本函数-menu函数

    1、menu函数:产生菜单

    2、用法说明

         m = menu('title','n1','n2',......,'nn') 函数显示以字符串变量‘title’为标题的菜单,选项为字符串变量:‘n1’,......,返回所输入的值到m

    3、举例说明

    >>  m = menu('登录注册界面','登录','注册','取消','返回')
    
    m =
    
         1
    
    >> m = menu('登录注册界面','登录','注册','取消','返回')
    
    m =
    
         2
    
    >>  m = menu('登录注册界面','登录','注册','取消','返回')
    
    m =
    
         3
    
    >>  m = menu('登录注册界面','登录','注册','取消','返回')
    
    m =
    
         4

    4、附录

    >> help menu
     menu   Generate a menu of choices for user input.
        CHOICE = menu(HEADER, ITEM1, ITEM2, ... ) displays the HEADER
        string followed in sequence by the menu-item strings: ITEM1, ITEM2,
        ... ITEMn. Returns the number of the selected menu-item as CHOICE,
        a scalar value. There is no limit to the number of menu items.
     
        CHOICE = menu(HEADER, ITEMLIST) where ITEMLIST is a string, cell
        array is also a valid syntax.
     
        On most graphics terminals menu will display the menu-items as push
        buttons in a figure window, otherwise they will be given as a numbered
        list in the command window (see example, below).
     
        Example:
            K = menu('Choose a color','Red','Blue','Green')
            %creates a figure with buttons labeled 'Red', 'Blue' and 'Green'
            %The button clicked by the user is returned as K (i.e. K = 2 
            implies that the user selected Blue).
     
        See also uicontrol, uimenu, guide.
    
        Reference page in Help browser
           doc menu
    


  • 相关阅读:
    O(1)时间求出栈内元素最小值 小强斋
    图片的轮廓 小强斋
    png 图片的缩放 小强斋
    Dom4j 小强斋
    O(1)时间求出栈内元素最小值 小强斋
    图片的轮廓 小强斋
    png图片的读取 小强斋
    字符串的最大重复数 小强斋
    【Android】数据的四种存储方式
    【就业】签offer和签三方协议的不同
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13315527.html
Copyright © 2011-2022 走看看