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

其他

开发平台:

Matlab

  1. function [ix,iy] = dyad2HL(j)
  2. %
  3. %%%%%%%It's My Own Function!!!!
  4. %
  5. % dyad2HL-- Index entire j-th dyad of 2-d wavelet xform in HL(left-bottom corner)
  6. %  Usage
  7. %    [ix,iy] = dyad2HL(j);
  8. %  Inputs
  9. %    j     integer
  10. %  Outputs
  11. %    [ix,iy]    list of all indices of wavelet coeffts at j-th level
  12. %
  13.     ix = (2^(j)+1):(2^(j+1)) ;
  14.     iy = 1:(2^j) ;