Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5];
y_correct = 9;
assert(isequal(your_fcn_name(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 your_fcn_name (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 1:100;
y_correct = 199;
assert(isequal(your_fcn_name(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 your_fcn_name (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 100:-1:1;
y_correct = 199;
assert(isequal(your_fcn_name(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 your_fcn_name (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = ones(1,10);
y_correct = 2;
assert(isequal(your_fcn_name(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 your_fcn_name (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = 2:2:10;
y_correct = 18;
assert(isequal(your_fcn_name(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 your_fcn_name (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = [561 13 3544 89 65 4615 561 32 8 958 65 69451];
y_correct = 74066;
assert(isequal(your_fcn_name(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 your_fcn_name (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
Matrix indexing with two vectors of indices
407 Solvers
251 Solvers
07 - Common functions and indexing 1
269 Solvers
143 Solvers
Basic commands - Least common multiple
124 Solvers