Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
out = [3 4];
vec = [11 22 33 44];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
|
2 | Pass |
out = [1 2];
vec = [33 44 11 22];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
|
3 | Pass |
out = 5:10;
vec = 10:10:100;
thresh = 45;
assert(isequal(findIndices(vec, thresh),out))
|
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))
|
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))
|
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))
|
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))
|
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))
|
Find the alphabetic word product
2321 Solvers
495 Solvers
309 Solvers
283 Solvers
424 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!