Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [1 1 1]
b = [0 0 0]
y_correct = [1 0 1 0 1 0];
assert(isequal(weave(a,b),y_correct))
a =
1 1 1
b =
0 0 0
c =
1 1 1
0 0 0
|
2 | Pass |
a = [1 2 3 4 5]
b = [10 9 8 7 6]
y_correct = [1 10 2 9 3 8 4 7 5 6];
assert(isequal(weave(a,b),y_correct))
a =
1 2 3 4 5
b =
10 9 8 7 6
c =
1 2 3 4 5
10 9 8 7 6
|
401 Solvers
Calculate the area of a triangle between three points
871 Solvers
340 Solvers
241 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!