Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [45 106; 67 112];
y_correct = [48 9 ;70 15];
assert(isequal(fcn(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 fcn (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = [100 101];
y_correct = [103 4];
assert(isequal(fcn(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 fcn (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = [99 100 101;102 103 104;0 1 2;200 300 400];
y_correct = [ 102 103 4;5 6 7;3 4 5;103 203 303];
assert(isequal(fcn(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 fcn (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
Swap the first and last columns
12415 Solvers
4333 Solvers
Magic is simple (for beginners)
2756 Solvers
260 Solvers
Matlab Basics - Absolute Value
360 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!