⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 initfigures.m~

📁 利用HMM的方法的三种语音识别算法
💻 M~
字号:
% initFigures% Position 6 figures on the edges of the screen.% [xmin ymin w h] where (0,0) = bottom left% Numbers assume screen resolution is 1024 x 1280global FIGNUM NUMFIGSFIGNUM = 1; NUMFIGS = 6;screenMain = true; % set to false if initializing figures for second screenif screenMain  xoff = 0; else  xoff = 1280;end% 2 x 3 designw = 400; h = 300;xs = [10 450 875] + xoff;ys = [650 40];if 0% 3x3 designw = 350; h = 250;xs = [10 380 750]+xoff;ys = [700 350 10];endNfigs = length(xs)*length(ys);if screenMain  fig = 1; else  fig = Nfigs + 1;endfor yi=1:length(ys)  for xi=1:length(xs)    figure(fig);    set(gcf, 'position', [xs(xi) ys(yi) w h]);    fig = fig + 1;  endend% To plot something on the next available figure (with wrap around), use% sfigure(FIGNUM); clf; FIGNUM = wrap(FIGNUM+1, NUMFIGS); 

⌨️ 快捷键说明

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