Return a binary number corresponding the nonnegative decimal number n, as a string of ones and zeros. For example,
dec2bin (14) "1110"If n is a vector, returns a string matrix, one row per value, padded with leading zeros to the width of the largest value.
The optional second argument, len, specifies the minimum number of digits in the result.