Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
z = 1;
a = 1;
v_correct = pi;
assert(isequal(pizza(z,a),v_correct))
s =
3.1416
y =
3.1416
|
2 | Pass |
z = 2;
a = 1;
v_correct = 4*pi;
assert(isequal(pizza(z,a),v_correct))
s =
12.5664
y =
12.5664
|
3 | Pass |
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
s =
3.1416
y =
6.2832
|
4 | Pass |
z = 2;
a = 2;
v_correct = 8*pi;
assert(isequal(pizza(z,a),v_correct))
s =
12.5664
y =
25.1327
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13055 Solvers
1600 Solvers
329 Solvers
Getting the indices from a vector
3213 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!