Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2;3 4];
y_correct = [2 2];
assert(isequal(even_odd(x),y_correct))
ans =
2 2
|
2 | Pass |
%%
x = [1 1 2 3 3 4 5 5];
y_correct = [6 2];
assert(isequal(even_odd(x),y_correct))
ans =
6 2
|
3 | Pass |
%%
x = magic(3);
y_correct = [5 4];
assert(isequal(even_odd(x),y_correct))
ans =
5 4
|
4 | Pass |
%%
x = spiral(5);
y_correct = [13 12];
assert(isequal(even_odd(x),y_correct))
ans =
13 12
|
Find the sum of all the numbers of the input vector
25647 Solvers
468 Solvers
337 Solvers
692 Solvers
Find out value of sine given by degree.
171 Solvers