Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [4 6 8 9 1 2 7];
y_correct = (6+9+2)/3;
assert(isequal(Ave_evenC(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 Ave_evenC (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x=[1:9];
y_correct =(2+4+6+8)/4;
assert(isequal(Ave_evenC(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 Ave_evenC (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x=repmat([5 0],1,10);
y_correct=0;
assert(isequal(Ave_evenC(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 Ave_evenC (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x=ones(1,51);
y_correct=1;
assert(isequal(Ave_evenC(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 Ave_evenC (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
444 Solvers
992 Solvers
214 Solvers
87 Solvers
84 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!