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

波变换

开发平台:

Matlab

  1. function nums = locnumcn(nodes,order)
  2. %LOCNUMCN Local number for a child node.
  3. %   NUMS = LOCNUMCN(NODES,ORDER)
  4. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 01-Jun-98.
  5. %   Last Revision: 16-Jul-1998.
  6. %   Copyright 1995-2002 The MathWorks, Inc.
  7. %   $Revision: 1.4 $  $Date: 2002/04/14 19:33:58 $
  8. if order==0 , nums = 1; return; end 
  9. nums  = nodes-order*floor((nodes-1)/order);
  10. %-------------------------
  11. % nums = rem(nodes,order);
  12. % nums(nums==0) = order;
  13. %-------------------------