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
|
Find the longest sequence of 1's in a binary sequence.
3370 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Create a square matrix of multiples
383 Solvers
284 Solvers
construct matrix with identical rows
168 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!