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)
|
19337 Solvers
Find the largest value in the 3D matrix
1056 Solvers
Find out sum of all elements of given Matrix
349 Solvers
177 Solvers
Sum the squares of numbers from 1 to n
163 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!