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))
in =
1 0 0 0 1 0 1 0 0 0 1
idx =
1 5 7 11
a =
[]
a =
1
a =
10
a =
101
out =
5
|
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))
in =
1 0 0 0 1 0 0 0 1 0 1 0 1
idx =
1 5 9 11 13
a =
[]
a =
1
a =
11
a =
110
a =
1100
out =
12
|
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))
in =
Columns 1 through 16
1 0 0 0 1 0 1 0 1 0 1 0 1 0 0 0
Columns 17 through 25
1 0 0 0 1 0 0 0 1
idx =
1 5 7 9 11 13 17 21 25
a =
[]
a =
1
a =
10
a =
100
a =
1000
a =
10000
a =
100001
a =
1000011
a =
10000111
out =
135
|
4 | Pass |
%%
numOut = 2;
barIn = repmat( [1 1 1 0 0 0 1 0 1 1 1],[30,1]);
assert(isequal(barDecoder(barIn),numOut))
in =
1 0 0 0 1 0 1
idx =
1 5 7
a =
[]
a =
1
a =
10
out =
2
|
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))
in =
Columns 1 through 16
1 0 0 0 1 0 1 0 0 0 1 0 0 0 1 0
Column 17
1
idx =
1 5 7 11 15 17
a =
[]
a =
1
a =
10
a =
101
a =
1011
a =
10110
out =
22
|
831 Solvers
Back to basics 3 - Temp Directory
328 Solvers
Find the largest value in the 3D matrix
1056 Solvers
399 Solvers
Set the array elements whose value is 13 to 0
941 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!