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 |
x = [1 1;-1 -1];
y_correct = 180;
assert(isequal(angle(x),y_correct))
|
2 | Pass |
x = [-1 1;-1 -1];
y_correct = 90;
assert(isequal(angle(x),y_correct))
|
3 | Pass |
x = [0.5 sqrt(3)/2;0.2 0];
y_correct = 60;
assert(isequal(angle(x),y_correct))
|
4 | Pass |
x = [-1 1;0.5 sqrt(3)/2];
y_correct = 75;
assert(isequal(angle(x),y_correct))
|
5 | Pass |
x = [0 1;0 5];
y_correct = 0;
assert(isequal(angle(x),y_correct))
|
1900 Solvers
Given a matrix, return the last eigen value
175 Solvers
Sum the elements in either diagonal of a square matrix
178 Solvers
205 Solvers
272 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!