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)
[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 quadRoots (line 2)
In ScoringEngineTestPoint1 (line 5)
In solutionTest (line 3)]
|
2 | Pass |
a=1;
b=-5;
c=6;
y_correct = [2 3];
assert(norm(quadRoots(a,b,c)-y_correct) < 10*eps)
[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 quadRoots (line 2)
In ScoringEngineTestPoint2 (line 5)
In solutionTest (line 5)]
|
3 | Pass |
a=1;
b=5;
c=6;
y_correct = [-3 -2];
assert(norm(quadRoots(a,b,c)-y_correct) < 10*eps)
[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 quadRoots (line 2)
In ScoringEngineTestPoint3 (line 5)
In solutionTest (line 7)]
|
4 | Pass |
a=2;
b=10;
c=12;
y_correct = [-3 -2];
assert(norm(quadRoots(a,b,c)-y_correct) < 10*eps)
[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 quadRoots (line 2)
In ScoringEngineTestPoint4 (line 5)
In solutionTest (line 9)]
|
5 | Pass |
a=1;
b=19;
c=90;
y_correct = [-10 -9];
assert(norm(quadRoots(a,b,c)-y_correct) < 100*eps)
[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 quadRoots (line 2)
In ScoringEngineTestPoint5 (line 5)
In solutionTest (line 11)]
|
Sort a list of complex numbers based on far they are from the origin.
4326 Solvers
Solve the set of simultaneous linear equations
273 Solvers
Vectorize the digits of an Integer
269 Solvers
309 Solvers
315 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!