## Copyright (C) 2000 Daniel Calvelo ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## -*- texinfo -*- ## @deftypefn {Function File} {} hex2dec (@var{s}) ## Returns the integer corresponding to the hexadecimal number stored ## in the string @var{s}. For example, ## ## @example ## hex2dec ("12B") ## @result{} 299 ## hex2dec ("12b") ## @result{} 299 ## @end example ## ## If @var{s} is a string matrix, returns a column vector of converted ## numbers, one per row of @var{s}. Invalid rows evaluate to NaN. ## @end deftypefn ## ## @seealso{dec2hex, base2dec, dec2base, bin2dec, dec2bin} ## Author: Daniel Calvelo ## Adapted-by: Paul Kienzle ## 2001-02-02 Paul Kienzle ## * use Kurt Hornik's texinfo for help function d = hex2dec (h) if (nargin != 1) usage("hex2dec (b)"); else d = base2dec (h, 16); endif endfunction