Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 180;
y_correct = pi;
assert(abs(DEG2RAD(x)-y_correct)<0.01)
|
2 | Pass |
x = -180;
y_correct = -pi;
assert(abs(DEG2RAD(x)-y_correct)<0.01)
|
3 | Pass |
x = 90;
y_correct = pi/2;
assert(abs(DEG2RAD(x)-y_correct)<0.01)
|
4 | Pass |
x = 45;
y_correct = pi/4;
assert(abs(DEG2RAD(x)-y_correct)<0.01)
|
The Hitchhiker's Guide to MATLAB
2874 Solvers
669 Solvers
191 Solvers
Find out sum of all elements of given Matrix
349 Solvers
327 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!