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

波变换

开发平台:

Matlab

  1. function s = wstrcoor(x,prec,lenMAX)
  2. %WSTRCOOR Format string of coordinates values.
  3. %   S = WSTRCOOR(X,PREC,LENMAX)
  4. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 22-May-2003.
  5. %   Last Revision: 22-May-2003.
  6. %   Copyright 1995-2004 The MathWorks, Inc.
  7. % $Revision: 1.1.6.2 $
  8. frm = ['%-+0.' sprintf('%1g',prec) 'f']; 
  9. s = sprintf(frm,x);
  10. if length(s)>lenMAX, s = s(1:lenMAX); end