Ip_04_09.m
上传用户:loeagle
上传日期:2013-03-02
资源大小:1236k
文件大小:0k
源码类别:

通讯编程文档

开发平台:

Matlab

  1. % MATLAB script for Illustrative Problem 4.9.
  2. echo on
  3. t=[0:0.01:10];
  4. a=sin(t);
  5. [sqnr8,aquan8,code8]=u_pcm(a,8);
  6. [sqnr16,aquan16,code16]=u_pcm(a,16);
  7. pause % Press a key to see the SQNR for N = 8.
  8. sqnr8
  9. pause % Press a key to see the SQNR for N = 16.
  10. sqnr16
  11. pause % Press a key to see the plot of the signal and its quantized versions.
  12. plot(t,a,'-',t,aquan8,'-.',t,aquan16,'-',t,zeros(1,length(t)))