Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [2.5 -1.7 5.6 8.4]
y_correct = [ 2 -2 5 8];
assert(isequal(rounding(a),y_correct))
a = [ -105.25 78.89 -0.1 0.9 7.2];
y_correct = [ -106 78 -1 0 7];
assert(isequal(rounding(a),y_correct))
a = [ 265.25 88.99 -0.1 0.9 7.2]
y_correct = [ 265 88 -1 0 7];
assert(isequal(rounding(a),y_correct))
a =
2.5000 -1.7000 5.6000 8.4000
[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 rounding (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
[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 rounding (line 2)
In ScoringEngineTestPoint1 (line 7)
In solutionTest (line 3)]
a =
265.2500 88.9900 -0.1000 0.9000 7.2000
[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 rounding (line 2)
In ScoringEngineTestPoint1 (line 11)
In solutionTest (line 3)]
|
1327 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Side of an equilateral triangle
2595 Solvers
360 Solvers
Matlab Basics - Logical Tests I
192 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!