comparison scripts/strings/dec2hex.m @ 2311:2b5788792cad

[project @ 1996-07-11 20:18:38 by jwe]
author jwe
date Thu, 11 Jul 1996 20:18:38 +0000
parents 5cffc4b8de57
children 5ca126254d15
comparison
equal deleted inserted replaced
2310:e2a8f216373d 2311:2b5788792cad
15 ### You should have received a copy of the GNU General Public License 15 ### You should have received a copy of the GNU General Public License
16 ### along with Octave; see the file COPYING. If not, write to the Free 16 ### along with Octave; see the file COPYING. If not, write to the Free
17 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 17 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
18 ### 02111-1307, USA. 18 ### 02111-1307, USA.
19 19
20 ## usage: dec2hex (d)
21 ##
22 ## Returns the hex number corresponding to the decimal number d. For
23 ## example, dec2hex (2748) returns "abc".
24
20 function h = dec2hex (d) 25 function h = dec2hex (d)
21 26
22 ## usage: dec2hex (d) 27 ## Original version by Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>.
23 ##
24 ## Returns the hex number corresponding to the decimal number d. For
25 ## example, dec2hex (2748) returns "abc".
26
27 ## Original version by Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>.
28 28
29 if (nargin != 1) 29 if (nargin != 1)
30 usage ("dec2hex (d)"); 30 usage ("dec2hex (d)");
31 endif 31 endif
32 32