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

语音合成与识别

开发平台:

Matlab

  1. % Program_2_6
  2. % Illustration of Impulse Response Computation
  3. %
  4. clf;
  5. N = input('Input length = ');
  6. p = input('Type in the vector p = ');
  7. d = input('Type in the vector d = ');
  8. x = [1 zeros(1,N-1)];
  9. y = filter(p,d,x);
  10. k = 0:N-1;
  11. stem(k,y);
  12. xlabel('Time index n'); ylabel('Amplitude');
  13. title('Impulse Response');