comparison scripts/strings/dec2hex.m @ 27981:7f1cec12c240

maint: Remove simple "Adapted-By:" lines from code base. * __ftp__.cc, urlwrite.cc, lin2mu.m, mu2lin.m, bincoeff.m, common_size.m, nextpow2.m, shift.m, xor.m, griddata.m, colormap.m, gray.m, gray2ind.m, image.m, imagesc.m, imshow.m, ind2gray.m, ind2rgb.m, ocean.m, rgb2ind.m, findstr.m, commutation_matrix.m, cross.m, gls.m, isdefinite.m, ishermitian.m, issymmetric.m, null.m, ols.m, orth.m, qzhess.m, vech.m, orderfields.m, untar.m, unzip.m, orient.m, __pltopt__.m, __gnuplot_print__.m, subplot.m, compan.m, conv.m, deconv.m, poly.m, polyder.m, polyfit.m, polyint.m, polyreduce.m, polyval.m, polyvalm.m, residue.m, roots.m, detrend.m, fftconv.m, fftfilt.m, fftshift.m, ifftshift.m, beta.m, lcm.m, pow2.m, corr.m, kurtosis.m, skewness.m, base2dec.m, bin2dec.m, blanks.m, deblank.m, dec2base.m, dec2bin.m, dec2hex.m, hex2dec.m, index.m, rindex.m, substr.m, calendar.m, datestr.m, datevec.m, eomday.m, now.m, weekday.m: Remove simple "Adapted-By:" lines from code base.
author Rik <rik@octave.org>
date Tue, 21 Jan 2020 13:15:15 -0800
parents bd51beb6205e
children 9f9ac219896d
comparison
equal deleted inserted replaced
27980:bdad8ca48700 27981:7f1cec12c240
45 ## digits in the result. 45 ## digits in the result.
46 ## @seealso{hex2dec, dec2base, dec2bin} 46 ## @seealso{hex2dec, dec2base, dec2bin}
47 ## @end deftypefn 47 ## @end deftypefn
48 48
49 ## Author: Daniel Calvelo <dcalvelo@yahoo.com> 49 ## Author: Daniel Calvelo <dcalvelo@yahoo.com>
50 ## Adapted-by: Paul Kienzle <pkienzle@kienzle.powernet.co.uk>
51 50
52 function h = dec2hex (d, len) 51 function h = dec2hex (d, len)
53 52
54 if (nargin == 1) 53 if (nargin == 1)
55 h = dec2base (d, 16); 54 h = dec2base (d, 16);