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
|
7277 Solvers
749 Solvers
169 Solvers
Matrix which contains the values of an other matrix A at the given locations.
196 Solvers
Basics: 'Find the eigenvalues of given matrix
258 Solvers