Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
a = [2.5 -1.7 5.6 8.4]
y_correct = [ 3 -1 6 9];
assert(isequal(positiveround(a),y_correct))
a = [ -105.25 78.89 -0.1 0.9 7.2]
y_correct = [ -105 79 0 1 8]
assert(isequal(positiveround(a),y_correct))
a = [ 265.25 88.99 -0.1 0.9 7.2]
y_correct = [ 266 89 0 1 8]
assert(isequal(positiveround(a),y_correct))
a =
2.5000 -1.7000 5.6000 8.4000
|
2183 Solvers
308 Solvers
284 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
1140 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!