This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In two_mean (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = [10 0 0 0 100];
y_correct = [5 0 0 50];
assert(isequal(two_mean(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In two_mean (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = [1 2 4];
y_correct = [1.5 3];
assert(isequal(two_mean(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In two_mean (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
244 Solvers
Reverse the Words (not letters) of a String
243 Solvers
153 Solvers
Create a vector whose elements depend on the previous element
290 Solvers
812 Solvers