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))
|
2 | Pass |
x = randn(10,10,10); x(7,5,8) = 11;
y_correct = [7,5,8];
assert(isequal(Index_Max3d(x),y_correct))
|
3 | Pass |
x = randn(10,10,100); x(10,5,8) = 99;
y_correct = [10,5,8];
assert(isequal(Index_Max3d(x),y_correct))
|
4 | Pass |
x = randn(10,10,10); x(1,3,7) = 42;
y_correct = [1,3,7];
assert(isequal(Index_Max3d(x),y_correct))
|
5 | Pass |
x = randn(10,10,100); x(4,4,7) = 123456789;
y_correct = [4,4,7];
assert(isequal(Index_Max3d(x),y_correct))
|
6 | Pass |
x = randn(10,10,10); x(1,1,9) = 10701;
y_correct = [1,1,9];
assert(isequal(Index_Max3d(x),y_correct))
|
7 | Pass |
x = randn(10,10,100); x(1,7,3) = 10701;
y_correct = [1,7,3];
assert(isequal(Index_Max3d(x),y_correct))
|
749 Solvers
How to find the position of an element in a vector without using the find function
2323 Solvers
394 Solvers
296 Solvers
241 Solvers