Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=1;
b=2;
c=1;
y_correct = [-1 -1];
assert(norm(quadRoots(a,b,c)-y_correct) < 10*eps)
y =
-1
-1
|
2 | Fail |
a=1;
b=-5;
c=6;
y_correct = [2 3];
assert(norm(quadRoots(a,b,c)-y_correct) < 10*eps)
y =
3.0000
2.0000
|
3 | Fail |
a=1;
b=5;
c=6;
y_correct = [-3 -2];
assert(norm(quadRoots(a,b,c)-y_correct) < 10*eps)
y =
-3.0000
-2.0000
|
4 | Fail |
a=2;
b=10;
c=12;
y_correct = [-3 -2];
assert(norm(quadRoots(a,b,c)-y_correct) < 10*eps)
y =
-3.0000
-2.0000
|
5 | Fail |
a=1;
b=19;
c=90;
y_correct = [-10 -9];
assert(norm(quadRoots(a,b,c)-y_correct) < 100*eps)
y =
-10
-9
|
6063 Solvers
299 Solvers
07 - Common functions and indexing 2
316 Solvers
Deleting an element in a matrix
325 Solvers
184 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!