dec2oct ======= convert from decimal to octal Calling Sequence ~~~~~~~~~~~~~~~~ :: o=dec2oct(d) Arguments ~~~~~~~~~ :d matrix of doubles, positive integer values : :o matrix of strings : Description ~~~~~~~~~~~ `dec2oct(x)` returns the octal representation of a matrix of integers. Examples ~~~~~~~~ :: dec2oct([2748 10;11 3]) See Also ~~~~~~~~ + `base2dec`_ convert from base b to decimal + `bin2dec`_ convert from binary to decimal + `oct2dec`_ convert from octal to decimal + `hex2dec`_ convert from hexadecimal to decimal + `dec2bin`_ convert from decimal to binary + `dec2hex`_ convert from decimal to hexadecimal .. _oct2dec: oct2dec.html .. _hex2dec: hex2dec.html .. _bin2dec: bin2dec.html .. _dec2bin: dec2bin.html .. _dec2hex: dec2hex.html .. _base2dec: base2dec.html