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

通讯编程文档

开发平台:

Matlab

  1. function x=invmulaw(y,mu)
  2. %INVMULAW the inverse of mu-law nonlinearity
  3. %X=INVMULAW(Y,MU) Y=normalized output of the mu-law nonlinearity.
  4. x=(((1+mu).^(abs(y))-1)./mu).*signum(y);