diff scripts/strings/dec2hex.m @ 2355:c9f70d39255f

[project @ 1996-08-20 23:30:54 by jwe]
author jwe
date Tue, 20 Aug 1996 23:32:09 +0000
parents b5568c31ee2c
children 9e0c8e289555
line wrap: on
line diff
--- a/scripts/strings/dec2hex.m
+++ b/scripts/strings/dec2hex.m
@@ -22,12 +22,11 @@
 ## Returns the hex number corresponding to the decimal number d.  For
 ## example, dec2hex (2748) returns "abc".
 
-## Author: jwe
+## Author: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
+## Adapted-By: jwe
 
 function h = dec2hex (d)
 
-## Original version by Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>.
-
   if (nargin != 1)
     usage ("dec2hex (d)");
   endif