Untitled2.m
上传用户:jzquartz
上传日期:2008-06-09
资源大小:389k
文件大小:0k
源码类别:

Audio

开发平台:

Matlab

  1. k = 16;                         % number of centroids required
  2. n=1;
  3.                    % train a VQ codebook for each speaker
  4.     file = sprintf('E:Stoolsmatlabworktrains1.wav',1);           
  5.     %disp(file);
  6.    
  7.     [s, fs] = wavread(file);
  8.     
  9.     v = mfcc(s, fs);            % Compute MFCC's
  10.    
  11.     code = vqlbg(v, k);      % Train VQ codebook
  12. plot(code);