thmmplot.m
上传用户:ay_070428
上传日期:2014-12-04
资源大小:11427k
文件大小:0k
源码类别:

语音合成与识别

开发平台:

Matlab

  1. % Plot dtw path
  2. close all
  3. vec1 = rand(1, 20);
  4. vec2 = rand(1, 30);
  5. % ====== Solution obtained by DTW
  6. figure;
  7. beginCorner = 0;
  8. endCorner = 0;
  9. windowWidth = 2;
  10. [minDist1, DTWpath1] = dtwmex1(vec1, vec2, beginCorner, endCorner, windowWidth);
  11. dtwplot(vec1, vec2, DTWpath1); 
  12. return
  13. figure
  14. [minDist2, DTWpath2] = dtwmex(vec1, vec2, 0, 0);
  15. dtwplot(vec1, vec2, DTWpath2);