Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3; 4 5 6];
y=[7 8; 9 10];
b_correct=(comb_matr(x,y))
b_correct = [ 1 2 3 1 2 3;
4 5 6 4 5 6;
7 7 7 8 8 8;
9 9 9 10 10 10];
assert(isequal(comb_matr(x,y),b_correct))
b_correct =
1 2 3 1 2 3
4 5 6 4 5 6
7 7 7 8 8 8
9 9 9 10 10 10
|
2 | Pass |
%%
x = [1 2 3 4; 5 6 7 8];
y = [7 8; 9 10] ;
b_correct=(comb_matr(x,y))
b= [1 2 3 4 1 2 3 4;
5 6 7 8 5 6 7 8;
7 7 7 7 8 8 8 8;
9 9 9 9 10 10 10 10];
assert(isequal(comb_matr(x,y),b_correct))
b_correct =
1 2 3 1 2 3
4 5 6 4 5 6
7 7 7 8 8 8
9 9 9 10 10 10
|
Find state names that end with the letter A
707 Solvers
Vectorizing, too easy or too hard?
128 Solvers
Find Index of maximum Value and maximum Value of a vector
144 Solvers
163 Solvers
525 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!