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))
E =
1.5708
ans =
[]
|
2 | Pass |
M = pi/2;
e = 0.8;
assert(isequal(round(kepler(M, e)*1e5)/1e5, 2.21193))
E =
2.2119
ans =
[]
|
3 | Pass |
M = pi/3;
e = 0.1;
assert(isequal(round(kepler(M, e)*1e5)/1e5, 1.13798))
E =
1.1380
ans =
[]
|
4 | Pass |
M = 0.1;
e = 0.2;
assert(isequal(round(kepler(M, e)*1e5)/1e5, 0.12492))
E =
0.1249
ans =
[]
|
6724 Solvers
525 Solvers
Create a two dimensional zero matrix
355 Solvers
Rounding off numbers to n decimals
1051 Solvers
492 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!