Scilab 5.3.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
base2dec
conversion from base b representation to integers
Calling Sequence
d=base2dec(s,b)
Arguments
- d
matrix of integers
- s
matrix of character strings corresponding to base b representation
- b
integer, the base
Description
base2dec(x,b)
returns the matrix of numbers
corresponding to the base b
representation.
Examples
base2dec(['ABC','0','A'],16)
<< Integer representation | Integer representation | bin2dec >> |