Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
out = [3 4];
vec = [11 22 33 44];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
vi =
1×4 logical array
0 0 1 1
p =
1
out =
3
p =
2
out =
3 4
p =
3
|
2 | Pass |
out = [1 2];
vec = [33 44 11 22];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
vi =
1×4 logical array
1 1 0 0
p =
1
out =
1
p =
2
out =
1 2
p =
3
|
3 | Pass |
out = 5:10;
vec = 10:10:100;
thresh = 45;
assert(isequal(findIndices(vec, thresh),out))
vi =
1×10 logical array
0 0 0 0 1 1 1 1 1 1
p =
1
out =
5
p =
2
out =
5 6
p =
3
out =
5 6 7
p =
4
out =
5 6 7 8
p =
5
out =
5 6 7 8 9
p =
6
out =
5 6 7 8 9 10
p =
7
|
4 | Pass |
out = [1 3 4 6 8];
vec = [12 10 13 14 9 17 5 18];
thresh = 11;
assert(isequal(findIndices(vec, thresh),out))
vi =
1×8 logical array
1 0 1 1 0 1 0 1
p =
1
out =
1
p =
2
out =
1 3
p =
3
out =
1 3 4
p =
4
out =
1 3 4 6
p =
5
out =
1 3 4 6 8
p =
6
|
5 | Pass |
out = [1:3 7:9];
vec = [50 55 60 15 10 5 43 44 97 41];
thresh = 42;
assert(isequal(findIndices(vec, thresh),out))
vi =
1×10 logical array
1 1 1 0 0 0 1 1 1 0
p =
1
out =
1
p =
2
out =
1 2
p =
3
out =
1 2 3
p =
4
out =
1 2 3 7
p =
5
out =
1 2 3 7 8
p =
6
out =
1 2 3 7 8 9
p =
7
|
6 | Pass |
out = 5:8;
vec = [10 12 14 16 18 20 22 23 7 8 9];
thresh = 17;
assert(isequal(findIndices(vec, thresh),out))
vi =
1×11 logical array
0 0 0 0 1 1 1 1 0 0 0
p =
1
out =
5
p =
2
out =
5 6
p =
3
out =
5 6 7
p =
4
out =
5 6 7 8
p =
5
|
7 | Pass |
out = [2 4:5 8 12:14 16];
vec = [10 81 24 65 97 13 45 68 24 35 16 79 123 76 45 60];
thresh = 51;
assert(isequal(findIndices(vec, thresh),out))
vi =
1×16 logical array
0 1 0 1 1 0 0 1 0 0 0 1 1 1 0 1
p =
1
out =
2
p =
2
out =
2 4
p =
3
out =
2 4 5
p =
4
out =
2 4 5 8
p =
5
out =
2 4 5 8 12
p =
6
out =
2 4 5 8 12 13
p =
7
out =
2 4 5 8 12 13 14
p =
8
out =
2 4 5 8 12 13 14 16
p =
9
|
8 | Pass |
out = 1:2:9;
vec = [11 9 12 8 13 7 14 6 15 5];
thresh = 10;
assert(isequal(findIndices(vec, thresh),out))
vi =
1×10 logical array
1 0 1 0 1 0 1 0 1 0
p =
1
out =
1
p =
2
out =
1 3
p =
3
out =
1 3 5
p =
4
out =
1 3 5 7
p =
5
out =
1 3 5 7 9
p =
6
|
3076 Solvers
3377 Solvers
Back to basics 25 - Valid variable names
293 Solvers
1425 Solvers
2985 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!