Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
r = 3;
h = 2;
y_correct = 65.9734;
assert(abs(func_frosting(r,h) - y_correct) < 1e-4)
ans =
65.9734
|
2 | Pass |
r = 0.5;
h = 0.25;
y_correct = 1.5708;
assert(abs(func_frosting(r,h) - y_correct) < 1e-4)
ans =
1.5708
|
1327 Solvers
1882 Solvers
Back to basics 9 - Indexed References
392 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
Remove element(s) from cell array
373 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!