www.pudn.com > asr.rar > ABDTW.M, change:2004-11-06,size:1242b


%%%%%%%%%%%%%%%%% 
%% abdtw.m     %% 
%%%%%%%%%%%%%%%%% 
set(cmthndl,'string',initmsg); 
 
figure( ... 
    'MenuBar','None', ... 
    'Name','About Dynamic Time Warping',... 
    'units','normal',... 
    'position',[0.1 0.1 0.5 0.6],... 
    'Resize','Off', ... 
    'Numbertitle','Off'); 
 
format=str2mat('      ',... 
            ' <not used >  <not used   >', ... 
            ' <not used >  <not used >',... 
            '           ',... 
            '          ',... 
            '       ');   
 
 
note=str2mat('   ',... 
      'Note: Data entry is not necessary ',... 
      '      for DTW.'); 
 
msg = str2mat('Data Entry Format for ',... 
       'DTW Training/recognition:',... 
       format, note);       
 
 
 
uicontrol( ... 
       'Style','edit', ... 
       'Units','Normalized', ... 
       'max',5, ... 
       'Backgroundcolor',[1 1 1], ... 
       'Position',[0.04 0.06 0.6 0.8] , ... 
       'String',msg); 
 
 
uicontrol( ... 
       'style','pushbutton', ... 
       'units','normalized', ... 
       'position',[0.7 0.2 0.15 0.15], ... 
       'string','CLOSE', ... 
       'callback','close(gcf)', ... 
       'enable','on'); 
    
%% Read in reference templates %% 
[modelpath, ModelFiles]=loadModel; 
 
return