This solution is outdated. To rescore this solution, sign in.
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))
|
1262 Solvers
Set some matrix elements to zero
290 Solvers
Reverse the elements of an array
687 Solvers
The sum of the numbers in the vector
426 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!