www.pudn.com > asr.rar > ABHMM.M, change:2004-11-06,size:1319b
%%%%%%%%%%%%%%%%%
%% abhmm.m %%
%%%%%%%%%%%%%%%%%
set(cmthndl,'string',initmsg);
figure( ...
'MenuBar','None', ...
'Name','About Hidden Markov Model',...
'units','normal',...
'position',[0.1 0.1 0.5 0.6],...
'Resize','Off', ...
'Numbertitle','Off');
format=str2mat(' ',...
' <state# > <LRflag >', ...
' <symbol#> <not used >',...
' ',...
'* LRflag: 1 left-right model',...
' 0 ergodic model',...
' state#: number of states',...
' symbol#: number of symbols',...
' ');
note=str2mat(' ',...
'Note: Data entry is not necessary ',...
' for HMM recognition.');
msg = str2mat('Data Entry Format for ',...
'HMM Training:',...
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');
return