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 = zeros(10,10,10); x(5,5,5) = 10;
y_correct = [5,5,5];
assert(isequal(Index_Max3d(x),y_correct))
ans =
[]
|
2 | Pass |
x = randn(10,10,10); x(7,5,8) = 11;
y_correct = [7,5,8];
assert(isequal(Index_Max3d(x),y_correct))
ans =
[]
|
3 | Pass |
x = randn(10,10,100); x(10,5,8) = 99;
y_correct = [10,5,8];
assert(isequal(Index_Max3d(x),y_correct))
ans =
[]
|
4 | Pass |
x = randn(10,10,10); x(1,3,7) = 42;
y_correct = [1,3,7];
assert(isequal(Index_Max3d(x),y_correct))
ans =
[]
|
5 | Pass |
x = randn(10,10,100); x(4,4,7) = 123456789;
y_correct = [4,4,7];
assert(isequal(Index_Max3d(x),y_correct))
ans =
[]
|
6 | Pass |
x = randn(10,10,10); x(1,1,9) = 10701;
y_correct = [1,1,9];
assert(isequal(Index_Max3d(x),y_correct))
ans =
[]
|
7 | Pass |
x = randn(10,10,100); x(1,7,3) = 10701;
y_correct = [1,7,3];
assert(isequal(Index_Max3d(x),y_correct))
ans =
[]
|
1836 Solvers
556 Solvers
15302 Solvers
4334 Solvers
2781 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!