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

语音合成与识别

开发平台:

Matlab

  1. % Program_2_1
  2. % Generation of complex exponential sequence
  3. clf;
  4. a = input('Type in real exponent = ');
  5. b = input('Type in imaginary exponent = ');
  6. c = a + b*i;
  7. K = input('Type in the gain constant = ');
  8. N = input ('Type in length of sequence = ');
  9. % Generate the sequence
  10. n = 0:N-1;
  11. x = K*exp(c*n);
  12. % Plot the real and imaginary parts
  13. subplot(2,1,1);
  14. stem(n,real(x));grid
  15. xlabel('Time index n');ylabel('Amplitude');
  16. title('Real part');
  17. subplot(2,1,2);
  18. stem(n,imag(x));grid
  19. xlabel('Time index n');ylabel('Amplitude');
  20. title('Imaginary part')