Convert a vector of positive integers into a matrix containing their binary representation. Each column of the output contains the binary representation. The least significant bit is at the top.
Example
input = [1 2 3 4]
output = [1 0 1 0
0 1 1 0
0 0 0 1]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers81
Suggested Problems
-
Replace NaNs with the number that appears to its left in the row.
3066 Solvers
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1309 Solvers
-
942 Solvers
-
151 Solvers
-
209 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
What should be class of output matrix?