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

通讯编程文档

开发平台:

Matlab

  1. % MATLAB script for Illustrative Problem 4.10.
  2. echo on
  3. a=randn(1,500);
  4. n=64;
  5. [sqnr,a_quan,code]=u_pcm(a,64);
  6. pause % Press a key to see the SQNR.
  7. sqnr
  8. pause % Press a key to see the first five input values.
  9. a(1:5)
  10. pause % Press a key to see the first five quantized values.
  11. a_quan(1:5)
  12. pause % Press a key to see the first five codewords.
  13. code(1:5,:)