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 |
x = [1,2];
y_correct = [2.1];
assert(abs(cone_volume(x) - y_correct) <=.1)
|
2 | Fail |
x = [1,2; 3,4; 5,6; 7,8 ];
y_correct = [2.1; 37.7; 157.1; 410.5;];
assert( all(abs(cone_volume(x) - y_correct) <=.1) )
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
495 Solvers
519 Solvers
60 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!