Write a function which calculates the binary code of a number 'n' and gives the result as an array(vector).
Example:
Input n = 123 Output y =[1,1,1,1,0,1,1]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers1539
Suggested Problems
-
Project Euler: Problem 5, Smallest multiple
1649 Solvers
-
Back to basics 22 - Rotate a matrix
933 Solvers
-
Compute a dot product of two vectors x and y
1049 Solvers
-
Sum the numbers on the main diagonal
612 Solvers
-
981 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This is a good problem, but it would be useful as the first problem in the list since you use this as a building block in all the other problems.