Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2;3 4];
y_correct = [2 2];
assert(isequal(even_odd(x),y_correct))
|
2 | Pass |
%%
x = [1 1 2 3 3 4 5 5];
y_correct = [6 2];
assert(isequal(even_odd(x),y_correct))
|
3 | Pass |
%%
x = magic(3);
y_correct = [5 4];
assert(isequal(even_odd(x),y_correct))
|
4 | Pass |
%%
x = spiral(5);
y_correct = [13 12];
assert(isequal(even_odd(x),y_correct))
|
1936 Solvers
Switch matrix to a column vector
189 Solvers
07 - Common functions and indexing 4
259 Solvers
Find out sum of all elements of given Matrix
271 Solvers
443 Solvers