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 | Fail |
P = pi/4;
A_correct = 0.7984235067141288;
assert(abs(fixedsumarea(P)-A_correct)<100*eps)
|
2 | Fail |
P = 1/sqrt(11);
A_correct = 0.4964013344766580;
assert(abs(fixedsumarea(P)-A_correct)<100*eps)
|
3 | Fail |
P = exp(-3);
A_correct = 0.1494793760894695;
assert(abs(fixedsumarea(P)-A_correct)<100*eps)
|
4 | Fail |
P = (1/27)^(1/5);
A_correct = 0.6605992894366502;
assert(abs(fixedsumarea(P)-A_correct)<100*eps)
|
5 | Fail |
P = sin(sqrt(2));
A_correct = 0.8634048022602919;
assert(abs(fixedsumarea(P)-A_correct)<100*eps)
|
6 | Fail |
P = 68/137;
A_correct = 0.6471420329484348;
assert(abs(fixedsumarea(P)-A_correct)<100*eps)
|
Extract leading non-zero digit
1205 Solvers
64 Solvers
54 Solvers
16 Solvers
1832 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!