This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 4*pi;
y_correct = 4*pi/3;
assert(isequal(sphere_volume(x),y_correct))
|
2 | Pass |
x = 36*pi;
y_correct = 36*pi;
assert(isequal(sphere_volume(x),y_correct))
|
3 | Pass |
x = 6;
y_correct = sqrt(6/pi);
assert(isequal(sphere_volume(x),y_correct))
|
Generate N equally spaced intervals between -L and L
563 Solvers
07 - Common functions and indexing 1
338 Solvers
Is this triangle right-angled?
2394 Solvers
444 Solvers
326 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!