Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3];
y_correct = [1.5 2.5];
assert(isequal(two_mean(x),y_correct))
y =
[]
f =
3
y =
1.5000
f =
5
y =
1.5000 2.5000
|
2 | Pass |
x = [10 0 0 0 100];
y_correct = [5 0 0 50];
assert(isequal(two_mean(x),y_correct))
y =
[]
f =
10
y =
5
f =
0
y =
5 0
f =
0
y =
5 0 0
f =
100
y =
5 0 0 50
|
3 | Pass |
x = [1 2 4];
y_correct = [1.5 3];
assert(isequal(two_mean(x),y_correct))
y =
[]
f =
3
y =
1.5000
f =
6
y =
1.5000 3.0000
|
5171 Solvers
747 Solvers
243 Solvers
Find out sum of all elements of given Matrix
272 Solvers
Check that number is whole number
274 Solvers