lsdual.m
上传用户:haiyisale
上传日期:2013-01-09
资源大小:3246k
文件大小:1k
源码类别:

波变换

开发平台:

Matlab

  1. function LSR = lsdual(LS)
  2. %LSDUAL Dual lifting scheme.
  3. %   LSD = LSDUAL(LS) returns the lifting scheme LSD 
  4. %   associated to LS. LS and LSD are issued of the
  5. %   same polyphase matrix factorisation PMF, where
  6. %   PMF = LS2PMF(LS). So [LS,LSD] = PMF2LS(PMF,'t').
  7. %
  8. %   For more information about lifting schemes type: lsinfo.
  9. %
  10. %   N.B.: LS = LSDUAL(LSDUAL(LS)).
  11. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 26-Jun-2002.
  12. %   Last Revision: 26-Jun-2003.
  13. %   Copyright 1995-2004 The MathWorks, Inc.
  14. %   $Revision: 1.1.6.3 $  $Date: 2004/04/13 00:39:54 $
  15. [PMF,dummy] = ls2pmf(LS,'t');
  16. [dummy,LSR] = pmf2ls(PMF,'t');