Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(cum_prod(x),y_correct))
y =
1
|
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
y =
1 2 10 100
|
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
y =
1 2 10 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
y =
1 2 6 24 120 720
|
5 | Pass |
x = 0:2,;
y_correct = [ 0 0 0];
assert(isequal(cum_prod(x),y_correct))
x =
0 1 2
y =
0 0 0
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
262 Solvers
Find the dimensions of a matrix
372 Solvers
213 Solvers
Compute LOG(1+X) in natural log
204 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!