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,y]=room_bounce(0,0,1,0,1,1,0.1);
assert(isequal(round(x*1000)/1000,0.51))
assert(isequal(round(y*1000)/1000,0))
|
2 | Pass |
%%
[x,y]=room_bounce(0,0,1,0,0.5,1,0.1);
assert(isequal(round(x*1000)/1000,0.49))
assert(isequal(round(y*1000)/1000,0))
|
3 | Pass |
%%
[x,y]=room_bounce(0.1,0,1,pi/4,0.1,1,0.1);
assert(isequal(round(x*1000)/1000,0.061))
assert(isequal(round(y*1000)/1000,0.361))
|
4 | Pass |
%%
[x,y]=room_bounce(0.1,0,10,pi/10,0.3,0.6,0.1);
assert(isequal(round(x*1000)/1000,0.01))
assert(isequal(round(y*1000)/1000,0.155))
|
5 | Pass |
%%
[x,y]=room_bounce(1,1,10,-pi/7,2,5,0.01);
assert(isequal(round(x*1000)/1000,0.366))
assert(isequal(round(y*1000)/1000,0.219))
|
1163 Solvers
819 Solvers
312 Solvers
651 Solvers
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!