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

语音合成与识别

开发平台:

Matlab

  1. % Program_2_3
  2. %  Illustration of Signal Generation
  3. %
  4. clf;
  5. % Random noise generation
  6. R = 51;
  7. d = rand(R,1) - 0.5;
  8. % Generate the uncorrupted signal
  9. for m = 1:1:R;
  10. s(m) = 2*(m-1)*((0.9)^(m-1));
  11. end
  12. k = 0:R-1;
  13. % Plot the signal and the noise
  14. subplot(2,1,1);
  15. stem(k,s)
  16. xlabel('Time index n'); ylabel('Amplitude');
  17. title('Original uncorrupted sequence');
  18. subplot(2,1,2);
  19. stem(k,d)
  20. xlabel('Time index n'); ylabel('Amplitude');
  21. title('Noise');