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

语音合成与识别

开发平台:

Matlab

  1. M=6;%采样速率
  2. h=c3_lininterp(M);%imp response of linear interpolator
  3. t=0:10;% time vector
  4. tu=0:60;%upsampled time vector
  5. x=sin(2*pi*t/10);%orginal samples
  6. xu=c3_upsamp(x,M);%upsampled sequence
  7. subplot(3,1,1)
  8. stem(t,x,'k.')
  9. ylabel('x')
  10. subplot(3,1,2)
  11. stem(tu,xu,'k.')
  12. ylabel('xu')
  13. xi=conv(h,xu);
  14. subplot(3,1,3)
  15. stem(xi,'k.')
  16. ylabel('xi')