Function must convert the input vector x composed of 0 and 1 (length is a multiple of 8) in hexadecimal. Most significant bit is first. each pair of hexadecimal symbols must be separated by space.
Example: [1 1 1 1 0 0 0 0 1 1 1 0 0 0 0 1] will return 'F0 E1'
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers48
Suggested Problems
-
Arrange Vector in descending order
13842 Solvers
-
Back to basics 21 - Matrix replicating
1819 Solvers
-
Flag largest magnitude swings as they occur
692 Solvers
-
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
2062 Solvers
-
Number of Even Elements in Fibonacci Sequence
1681 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Test 4, length(x) isn't a multiple of 8.
The input is an array in Tests 1-3 and a character string in Test 4.
bad problem.