This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
ans =
[]
|
2 | Pass |
x = [2 4.5 3 1 3.33]; n = 5;
y_correct = 4;
assert(isequal(findMaxIndex(x,n),y_correct))
ans =
[]
|
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))
ans =
[]
|
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))
ans =
[]
|
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))
ans =
[]
|
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
ans =
[]
|
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))
ans =
[]
|
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))
ans =
[]
|
2979 Solvers
1223 Solvers
2261 Solvers
Getting the indices from a matrice
360 Solvers
365 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!