bin2dec
Binary to decimal conversion.
y=bin2dec(x)
Inputs
x
A character array containing binary coded numbers.
y
An array of integers, which are decimal equivalents of the inputs.
Example
Example:
>>bin2dec('101')
5
>>bin2dec(['1011'; '1111'])
11 15