bipartitematchingdemoplot.m~

来自「利用HMM的方法的三种语音识别算法」· M~ 代码 · 共 23 行

M~
23
字号
function optimalMatchingDemoPlot(sources, detections, a)hold onp1 = size(sources,2);p2 = size(detections,2);for i=1:p1  text(sources(1,i), sources(2,i), sprintf('s%d', i));endfor i=1:p2  text(detections(1,i), detections(2,i), sprintf('d%d', i));endif nargin < 3, return; endfor i=1:p1  j = a(i);  if j==0 % i not matched to anything    continue  end  line([sources(1,i) detections(1,j)], [sources(2,i) detections(2,j)])endaxis_pct;

⌨️ 快捷键说明

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