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 | Pass |
%%
x = 1;
y = 1;
z = 1;
v_correct = 1;
assert(isequal(computeVolume(x,y,z),v_correct));
ans =
1
|
2 | Pass |
%%
x = 3;
y = 4.5;
z = 2;
v_correct = 27;
assert(isequal(computeVolume(x,y,z),v_correct));
ans =
27
|
3 | Pass |
%%
v_correct = 1;
assert(isequal(computeVolume(),1));
ans =
1
|
4 | Pass |
%%
v_correct = 1;
assert(isequal(computeVolume([],[],[]),1));
ans =
1
|
5 | Pass |
%%
y = 2;
v_correct = 2
assert(isequal(computeVolume([],y),v_correct));
v_correct =
2
ans =
2
|
6 | Pass |
%%
x = 9.2;
y = [];
v_correct = 9.2;
assert(isequal(computeVolume(x,y),v_correct));
ans =
9.2000
|
We love vectorized solutions. Problem 1 : remove the row average.
546 Solvers
248 Solvers
Sum the elements in either diagonal of a square matrix
178 Solvers
282 Solvers
432 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!