Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 4;
y_correct = 0;
assert(isequal(mat_fun(x),y_correct))
|
2 | Pass |
%%
x = [3 2 3 2 5 6 2 1 2];
y_correct = 3;
assert(isequal(mat_fun(x),y_correct))
|
3 | Pass |
%%
x = [999 999 999 2 15 6];
y_correct = 5;
assert(isequal(mat_fun(x),y_correct))
|
4 | Pass |
%%
x = 3:3:999;
y_correct = 333;
assert(isequal(mat_fun(x),y_correct))
|
5 | Pass |
%%
x = [1 2 3 4 5 6;6 5 4 3 2 1];
y_correct = 4;
assert(isequal(mat_fun(x),y_correct))
|
6 | Pass |
%%
x = [7 8 11 13 14 17];
y_correct = 0;
assert(isequal(mat_fun(x),y_correct))
|
Find the largest value in the 3D matrix
1056 Solvers
203 Solvers
Sum the 'edge' values of a matrix
232 Solvers
213 Solvers
201 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!