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

语音合成与识别

开发平台:

Matlab

  1. % Compute centroid of each singers
  2. %load waveData.mat
  3. addpath mex
  4. singers = textread('Recordwav/singer.txt', '%s');
  5. for i = 1:length(singers),
  6. fprintf('%g/%gn', i, length(singers));
  7. centroid(i).singer = singers{i};
  8. % Get centroid of female speakers
  9. index = getmean(waveData, singers{i}, 0);
  10. centroid(i).female = waveData(index).wavepath;
  11. % Get centroid of male speakers
  12. index = getmean(waveData, singers{i}, 1);
  13. centroid(i).male = waveData(index).wavepath;
  14. end
  15. save centroid centroid