Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
numOut = 5;
barIn = repmat( [1 1 1 0 0 0 1 0 1 0 0 0 1 1 1],[30,1]);;
assert(isequal(barDecoder(barIn),numOut))
|
2 | Pass |
numOut = 12;
barIn = repmat( [1 1 1 0 0 0 1 0 0 0 1 0 1 0 1 1 1],[30,1]);;
assert(isequal(barDecoder(barIn),numOut))
|
3 | Pass |
numOut = 135;
barIn = repmat( [1 1 1 0 0 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 1],[30,1]);;
assert(isequal(barDecoder(barIn),numOut))
|
4 | Pass |
numOut = 2;
barIn = repmat( [1 1 1 0 0 0 1 0 1 1 1],[30,1]);
assert(isequal(barDecoder(barIn),numOut))
|
5 | Pass |
numOut = 22;
barIn = repmat( [1 1 1 0 0 0 1 0 1 0 0 0 1 0 0 0 1 0 1 1 1],[30,1]);
assert(isequal(barDecoder(barIn),numOut))
|
657 Solvers
495 Solvers
190 Solvers
516 Solvers
2985 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!