Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = pi;
y_correct = 180;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
|
2 | Pass |
x = -pi;
y_correct = -180;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
|
3 | Pass |
x = pi/2;
y_correct = 90;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
|
4 | Pass |
x = pi/4;
y_correct = 45;
assert(abs(RAD2DEG(x)-y_correct)<0.01)
|
given 3 sides, find area of this triangle
680 Solvers
404 Solvers
Flip the main diagonal of a matrix
506 Solvers
284 Solvers
Relative ratio of "1" in binary number
392 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!