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))
y =
5 5 5
|
2 | Pass |
x = randn(10,10,10); x(7,5,8) = 11;
y_correct = [7,5,8];
assert(isequal(Index_Max3d(x),y_correct))
y =
7 5 8
|
3 | Pass |
x = randn(10,10,100); x(10,5,8) = 99;
y_correct = [10,5,8];
assert(isequal(Index_Max3d(x),y_correct))
y =
10 5 8
|
4 | Pass |
x = randn(10,10,10); x(1,3,7) = 42;
y_correct = [1,3,7];
assert(isequal(Index_Max3d(x),y_correct))
y =
1 3 7
|
5 | Pass |
x = randn(10,10,100); x(4,4,7) = 123456789;
y_correct = [4,4,7];
assert(isequal(Index_Max3d(x),y_correct))
y =
4 4 7
|
6 | Pass |
x = randn(10,10,10); x(1,1,9) = 10701;
y_correct = [1,1,9];
assert(isequal(Index_Max3d(x),y_correct))
y =
1 1 9
|
7 | Pass |
x = randn(10,10,100); x(1,7,3) = 10701;
y_correct = [1,7,3];
assert(isequal(Index_Max3d(x),y_correct))
y =
1 7 3
|
9833 Solvers
1726 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
Project Euler: Problem 9, Pythagorean numbers
282 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!