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 |
%% first new test added 08-June-2012
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 |
%% second new test
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
|
785 Solvers
Remove the small words from a list of words.
672 Solvers
Longest run of consecutive numbers
1648 Solvers
convert matrix to single column
306 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!