Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
v1 = 1;
v2 = 2;
v3 = 3;
d = 10;
assert(abs(thefly(v1,v2,v3,d)-10)/10<.01)
|
2 | Pass |
%%
v1 = 20;
v2 = 20;
v3 = 50;
d = 100;
assert(abs(thefly(v1,v2,v3,d)-125)/125<.01)
|
3 | Pass |
%%
v1 = 40;
v2 = 20;
v3 = 90;
d = 10;
assert(abs(thefly(v1,v2,v3,d)-15)/15<.01)
|
4 | Pass |
%%
v1 = 40;
v2 = 15;
v3 = 45;
d = 110;
assert(abs(thefly(v1,v2,v3,d)-90)/90<.01)
|
1836 Solvers
Create a cell array out of a struct
508 Solvers
Project Euler: Problem 3, Largest prime factor
379 Solvers
Implement simple rotation cypher
943 Solvers
207 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!