This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('addVecToMat.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
|
2 | Pass |
mat = ones(2);
v = 1:3;
comb_correct = [1 1 inf; 1 1 inf; 1 2 3];
assert(isequal(addVecToMat(mat, v), comb_correct))
|
3 | Pass |
mat = ones(3, 4);
v = [2 3];
comb_correct = [ones(3,4); 2 3 -inf -inf];
assert(isequal(addVecToMat(mat, v), comb_correct))
|
4 | Pass |
mat = ones(2);
v = [2 3];
comb_correct = [1 1; 1 1; 2 3];
assert(isequal(addVecToMat(mat, v), comb_correct))
|
5 | Pass |
mat = ones(3);
v = 1:6;
comb_correct = [repmat([ones(1,3) inf(1,3)], 3, 1); 1:6];
assert(isequal(addVecToMat(mat, v), comb_correct))
|
36342 Solvers
1529 Solvers
369 Solvers
93 Solvers
268 Solvers