Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
format compact
c=cell(1,3);
c{1}=2:6;c{2}=7:12;c{3}=13:18;
a=[1 2 3];b=[4 5 6];
y_correct = [5 11 18];
assert(isequal(break_cells_down(c,a,b),y_correct))
|
2 | Pass |
clear c
c=cell(1,5);
c{1}=rand(1,10);
c{2}=rand(1,10);
c{3}=rand(1,10);
c{4}=rand(1,10);
c{5}=rand(1,10);
a=randperm(5)
b=randperm(10);
b=b(1:5)
y_correct=[c{a(1)}(b(1)) c{a(2)}(b(2)) c{a(3)}(b(3)) c{a(4)}(b(4)) c{a(5)}(b(5))]
assert(isequal(break_cells_down(c,a,b),y_correct))
a =
2 1 4 3 5
b =
6 4 9 3 7
y_correct =
0.3388 0.5439 0.7206 0.0153 0.3615
|
3 | Pass |
clear c
c=cell(1,6);
c{1}=1:6;
c{2}=1:6;
c{3}=1:6;
c{4}=1:6;
c{5}=1:6;
c{6}=1:6;
a=1:6;
b=randperm(6)
y_correct=b;
assert(isequal(break_cells_down(c,a,b),y_correct))
b =
2 5 1 3 6 4
|
188 Solvers
First non-zero element in each column
593 Solvers
199 Solvers
546 Solvers
271 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!