Description
Return the number of 1s in the (unsigned integer) binary representation of a number. This function should be able to provide vectorized input and return an output with the same dimensions as the input.
Example
in = 215 out = 6
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers482
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6750 Solvers
-
Return unique values without sorting
1007 Solvers
-
Getting the absolute index from a matrix
258 Solvers
-
Vectorize the digits of an Integer
338 Solvers
-
Natural numbers in string form
1883 Solvers
More from this Author56
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Can you clarify what you mean by "vectorized input"?
Nice Test cases