home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / STRFUN.DI$ / DEC2HEX.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  376 b   |  15 lines

  1. function h = dec2hex(d)
  2. %DEC2HEX Decimal to hexadecimal number conversion.
  3. %    DEC2HEX(D) returns decimal integer D in hexadecimal form.
  4. %    For example, DEC2HEX(2748) returns 'ABC'.
  5. %
  6. %    See also HEX2DEC, HEX2NUM.
  7.  
  8. %    Author: L. Shure
  9. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  10.  
  11. if any(d ~= round(d))
  12.     error('Requires integer argument.')
  13. end
  14. h = sprintf('%X',d);
  15.