integer to binary conversion

7 views (last 30 days)
ABDUL
ABDUL on 17 Apr 2018
Answered: Walter Roberson on 17 Apr 2018
how to convert the random integers into binary form for the multidimensional matrix of size m x n x p .

Accepted Answer

Walter Roberson
Walter Roberson on 17 Apr 2018
cast() to the smallest integer type guaranteed to be able to represent the signed value range you need. typecast to the unsigned integer of the same size. dec2bin to get binary coded as characters. Subtract '0' to get binary numeric.
Instead of dec2bin and subtract, you might be able use de2bi

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!