This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
R = pi/2;
D_correct =90;
assert(isequal(RAD2DEG(R),D_correct))
|
2 | Pass |
R = pi;
D_correct = 180;
assert(isequal(RAD2DEG(R),D_correct))
|
3 | Pass |
R = 2*pi;
D_correct = 360;
assert(isequal(RAD2DEG(R),D_correct))
|
4 | Pass |
R = 3*pi;
D_correct = 540;
assert(isequal(RAD2DEG(R),D_correct))
|
747 Solvers
354 Solvers
Duplicate each element of a vector.
455 Solvers
309 Solvers
determine the sum of the squares
49 Solvers