Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[4 11 8; 9 2 7];
y_correct = (11+9+7)/3;
assert(isequal(ave_odd(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_odd (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x=[1:9;1:9;9:-1:1];
y_correct =(1+3+5+7+9)/5;
assert(isequal(ave_odd(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_odd (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x=repmat([7 0 1],2,2);
y_correct=4;
assert(isequal(ave_odd(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_odd (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x=ones(1,19);
y_correct=1;
assert(isequal(ave_odd(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_odd (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
192 Solvers
347 Solvers
125 Solvers
Sum of the Multiplication of Vectors
202 Solvers
555 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!