Convert from decimal to octal (original) (raw)
Change language to:
Français - 日本語 - Português
Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
See the recommended documentation of this function
Scilab help >> Elementary Functions > Integer representation > dec2oct
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
| << dec2hex | Integer representation | hex2dec >> |
|---|