Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
u = [0.5 0.5 0];;
v = [1 0 0];
angle_in_degrees = vector2angle(u,v)
assert(strcmp(num2str(angle_in_degrees),'45'))
angle_in_degrees =
45.0000
|
2 | Pass |
u = [0 0 1];
v = [1 0 0];
angle_in_degrees = vector2angle(u,v)
assert(strcmp(num2str(angle_in_degrees),'90'))
angle_in_degrees =
90
|
3 | Pass |
u = [0 0.8 1];
v = [1 0.3 0];
angle_in_degrees = vector2angle(u,v)
assert(strcmp(num2str(round(angle_in_degrees)),'80'))
angle_in_degrees =
79.6591
|
Given two strings, find the maximum overlap
461 Solvers
6280 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Area of an equilateral triangle
2759 Solvers
555 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!