Mercurial > hg > octave-lyh
changeset 3791:c1c532a0acb2
[project @ 2001-02-09 15:28:23 by jwe]
author | jwe |
---|---|
date | Fri, 09 Feb 2001 15:28:23 +0000 |
parents | 1e0d844b8f54 |
children | 74c2fc84f0cf |
files | scripts/strings/base2dec.m scripts/strings/bin2dec.m scripts/strings/dec2base.m scripts/strings/dec2bin.m scripts/strings/dec2hex.m scripts/strings/hex2dec.m |
diffstat | 6 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/strings/base2dec.m +++ b/scripts/strings/base2dec.m @@ -44,7 +44,7 @@ ## @end deftypefn ## @seealso{dec2base, dec2bin, bin2dec, hex2dec, dec2hex} -## Author: Daniel Calvelo <> +## Author: Daniel Calvelo <dcalvelo@yahoo.com> ## Adapted-by: Paul Kienzle <pkienzle@kienzle.powernet.co.uk> function out = base2dec (d, base)
--- a/scripts/strings/bin2dec.m +++ b/scripts/strings/bin2dec.m @@ -33,7 +33,7 @@ ## ## @seealso{dec2hex, base2dec, dec2base, bin2dec, dec2bin} -## Author: Daniel Calvelo +## Author: Daniel Calvelo <dcalvelo@yahoo.com> ## Adapted-by: Paul Kienzle <pkienzle@kienzle.powernet.co.uk> function d = bin2dec (h)
--- a/scripts/strings/dec2base.m +++ b/scripts/strings/dec2base.m @@ -42,7 +42,7 @@ ## ## @seealso{base2dec, dec2bin, bin2dec, hex2dec, dec2hex} -## Author: Daniel Calvelo <> +## Author: Daniel Calvelo <dcalvelo@yahoo.com> ## Adapted-by: Paul Kienzle <pkienzle@kienzle.powernet.co.uk> function out = dec2base (d, base)
--- a/scripts/strings/dec2bin.m +++ b/scripts/strings/dec2bin.m @@ -33,7 +33,7 @@ ## ## @seealso{bin2dec, dec2base, base2dec, hex2dec, dec2hex} -## Author: Daniel Calvelo +## Author: Daniel Calvelo <dcalvelo@yahoo.com> ## 2001-02-02 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> function h = dec2bin (d)
--- a/scripts/strings/dec2hex.m +++ b/scripts/strings/dec2hex.m @@ -33,7 +33,7 @@ ## ## @seealso{hex2dec, dec2base, base2dec, bin2dec, dec2bin} -## Author: Daniel Calvelo +## Author: Daniel Calvelo <dcalvelo@yahoo.com> ## Adapted-by: Paul Kienzle <pkienzle@kienzle.powernet.co.uk> function h = dec2hex (d)
--- a/scripts/strings/hex2dec.m +++ b/scripts/strings/hex2dec.m @@ -35,7 +35,7 @@ ## ## @seealso{dec2hex, base2dec, dec2base, bin2dec, dec2bin} -## Author: Daniel Calvelo +## Author: Daniel Calvelo <dcalvelo@yahoo.com> ## Adapted-by: Paul Kienzle <pkienzle@kienzle.powernet.co.uk> function d = hex2dec (h)