Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = pi;
y_correct = 180;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
[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 RAD2DEG (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = -pi;
y_correct = -180;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
[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 RAD2DEG (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = pi/2;
y_correct = 90;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
[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 RAD2DEG (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = pi/4;
y_correct = 45;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
[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 RAD2DEG (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
Sum all integers from 1 to 2^n
8421 Solvers
Arrange Vector in descending order
4083 Solvers
315 Solvers
270 Solvers
708 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!