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

语音合成与识别

开发平台:

Matlab

  1. % This script takes author.txt, syllable2num.txt and word2syllable.txt to 
  2. % generate author-code table
  3. % Connect to a database.
  4. %feature('dispatchjava',1);
  5. %timeoutA = logintimeout(5);
  6. %connA    = database('DBauthor','','');
  7. % Open cursor and execute a SQL statement.
  8. %cursorA = exec(connA,'select CoverName from Author');
  9. % Import three rows of data.
  10. %fprintf('Reading data from database ......please wait...n');
  11. %cursorA = fetch(cursorA);
  12. %Getting data you imported.
  13. %Data = cursorA.data;
  14. %将字转换为音节序号
  15. fprintf('Collecting author names from author.txt...n');
  16. Data = textread('author.txt','%s');
  17. index = 1;
  18. for i = 1:length(Data),
  19. name = Data{i};
  20. name(find(name==';')) = [];
  21. Ascii = double(name);%变为ASCII码
  22. %