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))
|
3654 Solvers
239 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
209 Solvers
Matrix indexing with two vectors of indices
408 Solvers
Create an n-by-n null matrix and fill with ones certain positions
140 Solvers