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

语音合成与识别

开发平台:

Matlab

  1. load dist0.mat
  2. ind = find(distmat>=1000000);
  3. distmat(ind) = inf;
  4. n = 100;
  5. part = distmat(1:n, 1:n);
  6. %part(5:50, 5:50) = inf;
  7. close all
  8. figure
  9. imagesc(part);
  10. axis image
  11. colormap gray
  12. colorbar;
  13. figure
  14. mesh(part);
  15. axis tight;
  16. rotate3d on