• 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
    


  • 相关阅读:
    SAP UI5应用和Hybris Commerce的国际化(internationalization)支持
    PHP获取目录下面所有文件和文件夹
    php利用smtp类轻松的发送电子邮件
    Redis和Memcached的一些区别
    redis命令大全参考手册
    redis类与用法
    公共类属性使用
    php 非对称加密解密类
    RSA密钥生成与使用
    Centos下安装Lamp和vsftpd、redis
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13315527.html
Copyright © 2020-2023  润新知