hex2dec: Convert from hex to decimal

View source: R/convert2hex.R

hex2decR Documentation

Convert from hex to decimal

Description

Convert a number from hexidecimal to decimal notation.

Usage

hex2dec(h)

Arguments

h

Vector of character strings with hexadecimal representation of integers (values >= 2^31 converted to missing, NA)

Value

The input converted from hexadecimal to decimal notation.

Author(s)

Karl W Broman, broman@wisc.edu

See Also

dec2hex()

Examples

hex2dec("14D")
hex2dec(0:30)


broman documentation built on July 8, 2022, 5:07 p.m.

Related to hex2dec in broman...