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

语音合成与识别

开发平台:

Matlab

  1. % Program_2_2
  2. % Generation of real exponential sequence
  3. clf;
  4. a = input('Type in exponent = ');
  5. K = input('Type in the gain constant = ');
  6. N = input ('Type in length of sequence = ');
  7. n = 0:N-1;
  8. x = K*a.^n;
  9. stem(n,x);grid;
  10. xlabel('Time index n');ylabel('Amplitude');
  11. title(['alpha =  ',num2str(a)]);