Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = pi;
y_correct = 180;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
y =
180
|
2 | Pass |
x = -pi;
y_correct = -180;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
y =
-180
|
3 | Pass |
x = pi/2;
y_correct = 90;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
y =
90
|
4 | Pass |
x = pi/4;
y_correct = 45;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
y =
45
|
Return the 3n+1 sequence for n
6169 Solvers
2814 Solvers
Create matrix of replicated elements
321 Solvers
212 Solvers
299 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!