dec2hex
Converts non-negative integers to their hexadecimal equivalents.
Syntax
R = dec2hex(n)
R = dec2hex(n, len)
Inputs
- n
- Finite, non-negative integer, matrix, or cell array of finite, non-negative integers.
- len (optional)
- Specifies the minimum length of each element if n is a matrix or a cell array. Valid values are finite, positive integers.
Outputs
- R
- If n is a matrix or cell array, R will be a string array with one row for each element. Every element will be the same width as the widest element, with leading zeros padding the value.
Examples
R = dec2hex(9876543210)
R = 24CB016EA
R = dec2hex([97, 65, 1])
R =
61
41
01
R = dec2hex({700, 555, 1}, 8)
R =
000002BC
0000022B
00000001