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)
|
450 Solvers
376 Solvers
5458 Solvers
Matlab Basics - Create a row vector
277 Solvers
Determine if input is divisible by three.
162 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!