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 |
M = pi/2;
e = 0;
assert(isequal(round(kepler(M, e)*1e5)/1e5, 1.5708))
|
2 | Fail |
M = pi/2;
e = 0.8;
assert(isequal(round(kepler(M, e)*1e5)/1e5, 2.21193))
|
3 | Pass |
M = pi/3;
e = 0.1;
assert(isequal(round(kepler(M, e)*1e5)/1e5, 1.13798))
|
4 | Fail |
M = 0.1;
e = 0.2;
assert(isequal(round(kepler(M, e)*1e5)/1e5, 0.12492))
|
9824 Solvers
594 Solvers
Implement simple rotation cypher
943 Solvers
Set the array elements whose value is 13 to 0
936 Solvers
485 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!