Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0;
assert(isequal(pol_angle(x),y_correct))
|
2 | Pass |
x = 2;
y_correct = 0;
assert(isequal(pol_angle(x),y_correct))
|
3 | Pass |
x = 3;
y_correct = 60;
assert(isequal(pol_angle(x),y_correct))
|
4 | Pass |
x = 4;
y_correct = 90;
assert(isequal(pol_angle(x),y_correct))
|
5 | Pass |
x = 5;
y_correct = 108;
assert(isequal(pol_angle(x),y_correct))
|
6 | Pass |
x = 6;
y_correct = 120;
assert(isequal(pol_angle(x),y_correct))
|
Make one big string out of two smaller strings
1148 Solvers
Getting the indices from a vector
3207 Solvers
382 Solvers
Find out sum of all elements of given Matrix
349 Solvers
Matlab Basics - Create a row vector
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!