DyadLo.m
上传用户:sla11nk8
上传日期:2013-03-09
资源大小:21k
文件大小:0k
源码类别:

其他

开发平台:

Matlab

  1. function d =DyadLo(x,qmf)
  2. %
  3. %%%%%It's My Own Function
  4. %
  5. % DyadLo -- Lo-Pass //No Downsampling operator (periodized)
  6. %  Usage
  7. %    d = DyadLo(x,f)
  8. %  Inputs
  9. %    x    1-d signal at fine scale
  10. %    f    filter
  11. %  Outputs
  12. %    y    1-d signal at coarse scale
  13. d = aconv(qmf,x);