Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
out = [3 4];
vec = [11 22 33 44];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
a =
0
a =
1
out =
3
a =
2
out =
3 4
|
2 | Pass |
out = [1 2];
vec = [33 44 11 22];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
a =
0
a =
1
out =
1
a =
2
out =
1 2
|
3 | Pass |
out = 5:10;
vec = 10:10:100;
thresh = 45;
assert(isequal(findIndices(vec, thresh),out))
a =
0
a =
1
out =
5
a =
2
out =
5 6
a =
3
out =
5 6 7
a =
4
out =
5 6 7 8
a =
5
out =
5 6 7 8 9
a =
6
out =
5 6 7 8 9 10
|
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))
a =
0
a =
1
out =
1
a =
2
out =
1 3
a =
3
out =
1 3 4
a =
4
out =
1 3 4 6
a =
5
out =
1 3 4 6 8
|
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))
a =
0
a =
1
out =
1
a =
2
out =
1 2
a =
3
out =
1 2 3
a =
4
out =
1 2 3 7
a =
5
out =
1 2 3 7 8
a =
6
out =
1 2 3 7 8 9
|
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))
a =
0
a =
1
out =
5
a =
2
out =
5 6
a =
3
out =
5 6 7
a =
4
out =
5 6 7 8
|
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))
a =
0
a =
1
out =
2
a =
2
out =
2 4
a =
3
out =
2 4 5
a =
4
out =
2 4 5 8
a =
5
out =
2 4 5 8 12
a =
6
out =
2 4 5 8 12 13
a =
7
out =
2 4 5 8 12 13 14
a =
8
out =
2 4 5 8 12 13 14 16
|
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))
a =
0
a =
1
out =
1
a =
2
out =
1 3
a =
3
out =
1 3 5
a =
4
out =
1 3 5 7
a =
5
out =
1 3 5 7 9
|
4107 Solvers
Create a square matrix of multiples
383 Solvers
Split a string into chunks of specified length
475 Solvers
Create an index-powered vector
352 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!