Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(cum_prod(x),y_correct))
|
2 | Pass |
x = [1 2 5 10],;
y_correct = [ 1 2 10 100];
assert(isequal(cum_prod(x),y_correct))
x =
1 2 5 10
|
3 | Pass |
x = [1 2 5 0],;
y_correct = [ 1 2 10 0];
assert(isequal(cum_prod(x),y_correct))
x =
1 2 5 0
|
4 | Pass |
x = 1:6,;
y_correct = [ 1 2 6 24 120 720];
assert(isequal(cum_prod(x),y_correct))
x =
1 2 3 4 5 6
|
5 | Pass |
x = 0:2,;
y_correct = [ 0 0 0];
assert(isequal(cum_prod(x),y_correct))
x =
0 1 2
|
1514 Solvers
Program an exclusive OR operation with logical operators
597 Solvers
193 Solvers
253 Solvers
Side of an equilateral triangle
1520 Solvers