ginfo.m

来自「人脸识别,基于matlab,原先从matlab官方网站下载」· M 代码 · 共 44 行

M
44
字号
%Display information menu
%Shows the database files 
%Jumps to "dinfo.m" for displayin information

clc
clear all
disp('*****************************')
disp('Display information       [1]')
disp('Show database files       [2]') 
disp('*****************************')
disp('Back                      [B]')
disp(' ')
k=input('Your Choice-->','s');

switch(k)
    case '1'
        dinfo
        
    case '2'
            clc
        disp(' ')
        disp(' ')
        disp(' Files on the selected directory are , ')
              dir *.dat
        pause
ginfo         
    case 'b'
        bdrfacerec
    case 'B'
        bdrfacerec
    
   
        
   

    otherwise
        clc
        disp('Wrong SELECTION!!')
        disp(' ')
        disp('Press any key to continue...')
   pause     
   ginfo
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?