Member of the string class.
c = hex2num(a)
Converts a hexadecimal number represented by a 16-character string to a double-precision, floating-point number.
| Name | Description |
| a | Specifies a hexadecimal number. Valid hexadecimal characters are: 0-9, a, b, c, d, e, f. You also can use the following characters: 0-9, A, B, C, D, E and F. a is a 16-character string. If a has fewer than 16 characters, LabVIEW pads the end of the string with zeros. |
| Name | Description |
| c | Returns a double-precision number equivalent to a. |
A = '410aa1109f'
C = hex2num(A)