Convert octal to decimal numbers
d = oct2dec(c)
d = oct2dec(c) converts an octal matrix c to a decimal matrix d, element by element. In both octal and decimal representations, the rightmost digit is the least significant.
c
d
collapse all
Convert a 2-by-2 octal matrix its decimal equivalent.
d = oct2dec([12 144;0 25])
d = 2×2 10 100 0 21
The octal number 144 is equivalent to 100 because 144=1(82)+4(81)+4(80)=100.
bi2de
You have a modified version of this example. Do you want to open this example with your edits?