diff scripts/strings/bin2dec.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 5ee5afb3981a
line wrap: on
line diff
--- a/scripts/strings/bin2dec.m
+++ b/scripts/strings/bin2dec.m
@@ -22,12 +22,11 @@
 ## Returns the decimal number corresponding to the binary number in
 ## quotes.  For example, bin2dec ("1110") returns 14.
 
-## Author: jwe
+## Author: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
+## Adapted-By: jwe
 
 function y = bin2dec (x)
 
-## Original version by Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>.
-
   if (nargin != 1)
     usage ("bin2dec (x)");
   endif