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 |
u= 100;
theta=85;
y_correct = 177;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
177
|
2 | Pass |
u= 31.42;
theta=45;
y_correct = 101;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
101
|
3 | Pass |
u= 31.42;
theta=-41;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
-100
|
4 | Pass |
u= 100;
theta=30;
y_correct = 883;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
883
|
5 | Pass |
u= -100;
theta=30;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
883
|
6 | Pass |
u= -100;
theta=210;
y_correct = 883;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
883
|
7 | Pass |
u= 100;
theta=210;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
883
|
8 | Pass |
u= 0;
theta=40;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
0
|
9 | Pass |
u= 100;
theta=90;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
0
|
10 | Pass |
u= 100;
theta=0;
y_correct = 0;
assert(isequal(round(CannonBall(u,theta)),y_correct))
s =
0
|
11 | Pass |
filetext = fileread('CannonBall.m');
assert(isempty(strfind(filetext, 'regexp'))); assert(isempty(strfind(filetext, 'eval')))
|
2240 Solvers
502 Solvers
348 Solvers
How long is the longest prime diagonal?
338 Solvers
Flag largest magnitude swings as they occur
582 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!