Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [1 2 3]
b = [4 5 6]
y_correct = [4 13 28 27 18];
assert(isequal(your_fcn_name(a,b),y_correct))
a =
1 2 3
b =
4 5 6
|
2 | Pass |
a = [3 4 0]
b = [9 6 2 0 1]
y_correct = [27 54 30 8 3 4 0];
assert(isequal(your_fcn_name(a,b),y_correct))
a =
3 4 0
b =
9 6 2 0 1
|
1263 Solvers
First non-zero element in each column
593 Solvers
232 Solvers
205 Solvers
275 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!