Given an integer to encode, make a barcode using the following encoding scheme:
- The bar code is made from the binary version of the integer
- The bar code is a matrix 30x?
- A '1' becomes a thick bar
- A '0' becomes a thin bar
- Bars are represented by 0's in the output
- A '1' becomes '0 0 0'
- A '0' becomes '0'
- White space between bars is a single 1
- There will be no left hand zeros in the binary representation
- There are three columns of white space at beginning and end of bar code For example:
Input 5 yields
[1 1 1 0 0 0 1 0 1 0 0 0 1 1 1] (only repeated for 30 rows);
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers183
Suggested Problems
-
Return a list sorted by number of occurrences
2901 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2916 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
560 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
405 Solvers
-
There are 10 types of people in the world
1396 Solvers
More from this Author51
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!