Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
out = [3 4];
vec = [11 22 33 44];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
ans =
3 4
|
2 | Pass |
out = [1 2];
vec = [33 44 11 22];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
ans =
1 2
|
3 | Pass |
out = 5:10;
vec = 10:10:100;
thresh = 45;
assert(isequal(findIndices(vec, thresh),out))
ans =
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))
ans =
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))
ans =
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))
ans =
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))
ans =
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))
ans =
1 3 5 7 9
|
5703 Solvers
2500 Solvers
707 Solvers
Calculate the Levenshtein distance between two strings
456 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!