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))
a =
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))
a =
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))
a =
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))
a =
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))
a =
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))
a =
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))
a =
1 7 3
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35548 Solvers
404 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
492 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!