Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 4.5 3 1 3.33]; n = 4;
y_correct = 1;
assert(isequal(findMaxIndex(x,n),y_correct))
|
2 | Pass |
x = [2 4.5 3 1 3.33]; n = 5;
y_correct = 4;
assert(isequal(findMaxIndex(x,n),y_correct))
|
3 | Pass |
x = [2 4.5 3 1 3.33 eps inf 0.01]; n = 1;
y_correct = 7;
assert(isequal(findMaxIndex(x,n),y_correct))
|
4 | Pass |
x = [2 4.5 3 1 3.33 eps inf 0.01]; n = 8;
y_correct = 6;
assert(isequal(findMaxIndex(x,n),y_correct))
|
5 | Pass |
x = [2 4.5 3 1 3.33 eps inf 0.01 realmax realmin]; n = 2;
y_correct = 9;
assert(isequal(findMaxIndex(x,n),y_correct))
|
6 | Pass |
x = [-2.23 1 0 -6.65 2.63 -realmax inf 0]; n = 8
y_correct = 6;
assert(isequal(findMaxIndex(x,n),y_correct))
n =
8
|
7 | Pass |
x = [2 4.5 3.33 3 1 3.33]; n = 2;
y_correct = [3 6];
assert(isequal(findMaxIndex(x,n),y_correct))
|
8 | Pass |
x = [2 4.5 pi eps eps pi 0 pi 6]; n = 3;
y_correct = [3 6 8];
assert(isequal(findMaxIndex(x,n),y_correct))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13048 Solvers
216 Solvers
Output any real number that is neither positive nor negative
316 Solvers
525 Solvers
Returning a "greater than" vector
188 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!