2313
|
1 ## Copyright (C) 1996 Kurt Hornik |
2325
|
2 ## |
2313
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
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 |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
2268
|
19 |
2311
|
20 ## usage: dec2hex (d) |
|
21 ## |
|
22 ## Returns the hex number corresponding to the decimal number d. For |
2325
|
23 ## example, dec2hex (2748) returns "abc". |
2311
|
24 |
2355
|
25 ## Author: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
|
26 ## Adapted-By: jwe |
2314
|
27 |
2268
|
28 function h = dec2hex (d) |
|
29 |
|
30 if (nargin != 1) |
|
31 usage ("dec2hex (d)"); |
|
32 endif |
2325
|
33 |
2268
|
34 [nr, nc] = size (d); |
|
35 |
|
36 len = nr * nc; |
|
37 |
|
38 d = reshape (d, 1, len); |
|
39 |
|
40 eleo = empty_list_elements_ok; |
|
41 unwind_protect |
|
42 empty_list_elements_ok = 1; |
|
43 h = ""; |
|
44 for i = 1:len |
|
45 tmp = d (i); |
|
46 if (tmp == round (tmp)) |
|
47 h = [h, sprintf ("%x", tmp)]; |
|
48 else |
|
49 error ("dec2hex: invalid conversion"); |
|
50 endif |
|
51 endfor |
|
52 unwind_protect_cleanup |
|
53 empty_list_elements_ok = eleo; |
|
54 end_unwind_protect |
|
55 |
|
56 endfunction |