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

波变换

开发平台:

Matlab

  1. function first = utposfra(first,last,loc,val)
  2. %UTPOSFRA Utilities  for setting frame position.
  3. %   FIRST = UTPOSFRA(FIRST,LAST,LOC,VAL)
  4. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 28-May-98.
  5. %   Last Revision: 29-May-1998.
  6. %   Copyright 1995-2002 The MathWorks, Inc.
  7. %   $Revision: 1.4 $  $Date: 2002/04/14 19:48:44 $
  8. if     ~isinf(loc)    , first = loc(1)+(loc(2)-val)/2;
  9. elseif ~isinf(first)  ,
  10. elseif ~isinf(last)   , first = last-val;
  11. else                  , first = 10;
  12. end